09-Vue中的Ajax请求

vue-resource的介绍

vue-resource是Vue高度集成的第三方包。

官网链接:

vue-resource 依赖于 Vue。所以,我们要按照先后顺序,导入vue.js和vue-resource.js文件。

解释

vue.js文件向Windows对象暴露了Vue这个关键词;vue-resource.js向Vue身上挂载了this.$http这个属性。于是,我们可以直接写this.$http.get或者this.$http.post或者this.$http.jsonp来调用。

vue-resource 发送Ajax请求

常见的数据请求类型包括:get、post、jsonp。下面我们分别讲一讲。

get 请求

格式举例

  1. this.$http.get(url)
  2. .then(function (result) { // 当发起get请求之后,通过 .then 来设置成功的回调函数
  3. console.log(result.body); // response.body就是服务器返回的成功的数据
  4. var result = result.body;
  5. },
  6. function (err) {
  7. //err是异常数据
  8. });

获取到的response.body就是要获取的数据,但直接打印出来是 object,所以要记得转成string。

举例:获取数据

现规定,获取品牌数据的 api 接口说明如下:

09-Vue中的Ajax请求 - 图1

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Document</title>
  6. <style>
  7. #app {
  8. width: 800px;
  9. margin: 20px auto;
  10. }
  11. #tb {
  12. width: 800px;
  13. border-collapse: collapse;
  14. margin: 20px auto;
  15. }
  16. #tb th {
  17. background-color: #0094ff;
  18. color: white;
  19. font-size: 16px;
  20. padding: 5px;
  21. text-align: center;
  22. border: 1px solid black;
  23. }
  24. #tb td {
  25. padding: 5px;
  26. text-align: center;
  27. border: 1px solid black;
  28. }
  29. </style>
  30. <script src="../vue.js"></script>
  31. <script src="../vue-resource121.js"></script>
  32. </head>
  33. <body>
  34. <div id="app">
  35. <input type="text" v-model="id">
  36. <input type="text" v-model="pname">
  37. <button>添加数据</button>
  38. <table id="tb">
  39. <tr>
  40. <th>编号</th>
  41. <th>名称</th>
  42. <th>创建时间</th>
  43. <th>操作</th>
  44. </tr>
  45. <tr v-for="item in list">
  46. <td>{{item.id}}</td>
  47. <td>{{item.name}}</td>
  48. <td>{{item.ctime}}</td>
  49. <td>
  50. <a href="javascript:void(0)">删除</a>
  51. </td>
  52. </tr>
  53. </table>
  54. </div>
  55. </body>
  56. <script>
  57. new Vue({
  58. el :'#app',
  59. data:{
  60. list:[]
  61. },
  62. // Vue对象实例创建成功以后就会自动调用这个方法
  63. created:function(){
  64. this.getlist();
  65. },
  66. methods:{
  67. getlist:function(){
  68. // 请求服务器的api获取到品牌的数据列表
  69. this.$http.get('http://vueapi.ittun.com/api/getprodlist')
  70. .then(function(response){
  71. // 1、处理服务器异常信息提示
  72. if(response.body.status != 0){
  73. alert(response.body.message);
  74. return;
  75. }
  76. // 2、处理正常的数据逻辑
  77. this.list = response.body.message; //直接将数据放到list数组当中,页面就会自动显示
  78. console.log(this.list);
  79. });
  80. }
  81. }
  82. });
  83. </script>
  84. </html>

上方代码中,我们用到了生命周期函数created,意思是:程序一加载,就马上在created这个函数里执行getlist()方法。

运行的结果如下:

09-Vue中的Ajax请求 - 图2

如果我直接在浏览器中输入请求的url,获取的json数据如下:(可以看到,这种方式获取的是相同的数据)

09-Vue中的Ajax请求 - 图3

post请求

格式举例

  1. // 方法:$http.post(url, 传给服务器的请求体中的数据, {emulateJSON:true})
  2. // 通过 post 方法的第三个参数{ emulateJSON: true } ,来设置 提交的内容类型 为 普通表单数据格式
  3. this.$http.post(url, { name: '奔驰' }, { emulateJSON: true })
  4. .then(function (response) {
  5. alert(response.body.message);
  6. },
  7. function (error) {
  8. });

上方代码中,post()方法中有三个参数,其中第三个参数是固定值,照着写就可以了。

代码举例:(添加数据)

现规定,添加品牌数据的 api 接口说明如下:

09-Vue中的Ajax请求 - 图4

代码如下:(在上一段代码的基础之上,添加代码)

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Document</title>
  6. <style>
  7. #app {
  8. width: 800px;
  9. margin: 20px auto;
  10. }
  11. #tb {
  12. width: 800px;
  13. border-collapse: collapse;
  14. margin: 20px auto;
  15. }
  16. #tb th {
  17. background-color: #0094ff;
  18. color: white;
  19. font-size: 16px;
  20. padding: 5px;
  21. text-align: center;
  22. border: 1px solid black;
  23. }
  24. #tb td {
  25. padding: 5px;
  26. text-align: center;
  27. border: 1px solid black;
  28. }
  29. </style>
  30. <script src="vue.js"></script>
  31. <script src="vue-resource121.js"></script>
  32. </head>
  33. <body>
  34. <div id="app">
  35. <input type="text" v-model="pname">
  36. <button @click="adddata">添加数据</button>
  37. <table id="tb">
  38. <tr>
  39. <th>编号</th>
  40. <th>名称</th>
  41. <th>创建时间</th>
  42. <th>操作</th>
  43. </tr>
  44. <tr v-for="item in list">
  45. <td>{{item.id}}</td>
  46. <td>{{item.name}}</td>
  47. <td>{{item.ctime}}</td>
  48. <td>
  49. <a href="javascript:void(0)">删除</a>
  50. </td>
  51. </tr>
  52. </table>
  53. </div>
  54. </body>
  55. <script>
  56. new Vue({
  57. el: '#app',
  58. data: {
  59. pname: '', //这个 pname 是我在输入框里添加的数据。我们要把这个传给服务器
  60. list: []
  61. },
  62. // Vue对象实例创建成功以后就会自动调用这个方法
  63. created: function () {
  64. this.getlist();
  65. },
  66. methods: {
  67. //ajax请求:添加数据
  68. adddata: function () {
  69. // 1、获取用户填写的文本框的值只需要通过this.pname即可
  70. // 2、调用ajax的post方法将数据上传到服务器
  71. var url = 'http://vueapi.ittun.com/api/addproduct';
  72. var postData = { name: this.pname }; //【重要】键`name`是json中约定好的字段。我们把这个字段传给服务器
  73. var options = { emulateJSON: true };
  74. this.$http.post(url, postData, options).then(function (response) {
  75. if (response.body.status != 0) {
  76. alert(response.body.message);
  77. return;
  78. }
  79. this.pname = '';
  80. // 3、添加完成后,只需要手动再调用一次getlist(将列表数据重新加载一次),即可刷新页面上的数据
  81. this.getlist();
  82. });
  83. },
  84. //ajax请求:获取数据
  85. getlist: function () {
  86. this.$http.get('http://vueapi.ittun.com/api/getprodlist')
  87. .then(function (response) {
  88. // 1、处理服务器异常信息提示
  89. if (response.body.status != 0) {
  90. alert(response.body.message);
  91. return;
  92. }
  93. // 2、处理正常的数据逻辑
  94. this.list = response.body.message;
  95. console.log(this.list);
  96. });
  97. }
  98. }
  99. });
  100. </script>
  101. </html>

代码举例:(删除数据)

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Document</title>
  6. <style>
  7. #app {
  8. width: 800px;
  9. margin: 20px auto;
  10. }
  11. #tb {
  12. width: 800px;
  13. border-collapse: collapse;
  14. margin: 20px auto;
  15. }
  16. #tb th {
  17. background-color: #0094ff;
  18. color: white;
  19. font-size: 16px;
  20. padding: 5px;
  21. text-align: center;
  22. border: 1px solid black;
  23. }
  24. #tb td {
  25. padding: 5px;
  26. text-align: center;
  27. border: 1px solid black;
  28. }
  29. </style>
  30. <script src="vue.js"></script>
  31. <script src="vue-resource121.js"></script>
  32. </head>
  33. <body>
  34. <div id="app">
  35. <input type="text" v-model="pname">
  36. <button @click="adddata">添加数据</button>
  37. <table id="tb">
  38. <tr>
  39. <th>编号</th>
  40. <th>名称</th>
  41. <th>创建时间</th>
  42. <th>操作</th>
  43. </tr>
  44. <tr v-for="item in list">
  45. <td>{{item.id}}</td>
  46. <td>{{item.name}}</td>
  47. <td>{{item.ctime}}</td>
  48. <td>
  49. <!-- 具体要删除哪个item,不能写死。所以要根据id来删 -->
  50. <a href="javascript:void(0)" @click="deldata(item.id)">删除</a>
  51. </td>
  52. </tr>
  53. </table>
  54. </div>
  55. </body>
  56. <script>
  57. new Vue({
  58. el: '#app',
  59. data: {
  60. pname: '', //这个 pname 是我在输入框里添加的数据。我们要把这个传给服务器
  61. list: []
  62. },
  63. // Vue对象实例创建成功以后就会自动调用这个方法
  64. created: function () {
  65. this.getlist();
  66. },
  67. methods: {
  68. //ajax请求:添加数据
  69. adddata: function () {
  70. // 1、获取用户填写的文本框的值只需要通过this.pname即可
  71. // 2、调用ajax的post方法将数据上传到服务器
  72. var url = 'http://vueapi.ittun.com/api/addproduct';
  73. var postData = { name: this.pname }; //【重要】键`name`是json中约定好的字段。我们把这个字段传给服务器
  74. var options = { emulateJSON: true };
  75. this.$http.post(url, postData, options).then(function (response) {
  76. if (response.body.status != 0) {
  77. alert(response.body.message);
  78. return;
  79. }
  80. this.pname = '';
  81. // 3、直接将列表数据重新加载一次,即可刷新页面上的数据
  82. this.getlist();
  83. });
  84. },
  85. //ajax请求:获取数据
  86. getlist: function () {
  87. this.$http.get('http://vueapi.ittun.com/api/getprodlist')
  88. .then(function (response) {
  89. // 1、处理服务器异常信息提示
  90. if (response.body.status != 0) {
  91. alert(response.body.message);
  92. return;
  93. }
  94. // 2、处理正常的数据逻辑
  95. this.list = response.body.message;
  96. console.log(this.list);
  97. });
  98. },
  99. // ajax请求:删除数据
  100. deldata: function (id) {
  101. this.$http.get('http://vueapi.ittun.com/api/delproduct/' + id)
  102. .then(function (response) {
  103. if (response.body.status != 0) {
  104. alert(response.body.message);
  105. return;
  106. }
  107. // 刷新列表
  108. this.getlist();
  109. });
  110. }
  111. }
  112. });
  113. </script>
  114. </html>

jsonp

09-Vue中的Ajax请求 - 图5

格式举例

  1. // 利用vue-resource中的jsonp方法实现跨域请求数据,这里要注意的是:
  2. // url后面不需要跟callback=fn这个参数了,jsonp方法会自动加上
  3. this.$http.jsonp('http://vuecms.ittun.com/api/getlunbo?id=1')
  4. .then(function (response) {
  5. console.log(JSON.stringify(response.body));
  6. }, function (err) {
  7. //err是异常数据
  8. });

请求结果:

09-Vue中的Ajax请求 - 图6

JSONP的实现原理

由于浏览器的安全性限制,默认不允许Ajax发起跨域(协议不同、域名不同、端口号不同)的请求。浏览器认为这种访问不安全。

JSONP的实现原理:通过动态创建script标签的形式,用script标签的src属性,代表api接口的url,因为script标签不存在跨域限制,这种数据获取方式,称作JSONP(注意:根据JSONP的实现原理,知晓,JSONP只支持Get请求)。

具体实现过程:

  • 先在客户端定义一个回调方法,预定义对数据的操作

  • 再把这个回调方法的名称,通过URL传参的形式,提交到服务器的api接口;

  • 服务器api接口组织好要发送给客户端的数据,再拿着客户端传递过来的回调方法名称,拼接出一个调用这个方法的字符串,发送给客户端去解析执行;

  • 客户端拿到服务器返回的字符串之后,当作Script脚本去解析执行,这样就能够拿到JSONP的数据了

axios

除了 vue-resource 之外,还可以使用 axios 的第三方包实现实现数据的请求。

通过Vue全局配置api接口的url地址

api接口的url地址包括:绝对路径+相对路径。

我们在做Ajax请求的时候,所填写的url建议填相对路径,然后把绝对路径放在全局的位置。

Vue就提供了这个功能。举例如下:

  1. <script>
  2. // 如果我们通过全局配置了,请求的数据接口 根域名,则 ,在每次单独发起 http 请求的时候,请求的 url 路径,应该以相对路径开头,前面不能带 / ,否则 不会启用根路径做拼接;
  3. Vue.http.options.root = 'http://smyhvae/';
  4. // 全局启用 emulateJSON 选项
  5. Vue.http.options.emulateJSON = true;
  6. var vm = new Vue({
  7. el: '#app',
  8. data: {
  9. name: '',
  10. list: [ // 存放所有品牌列表的数组
  11. ]
  12. },
  13. created() { // 当 vm 实例 的 data 和 methods 初始化完毕后,vm实例会自动执行created 这个生命周期函数
  14. this.getAllList()
  15. },
  16. methods: {
  17. getAllList() { // 获取所有的品牌列表
  18. // 分析:
  19. // 1. 由于已经导入了 Vue-resource这个包,所以 ,可以直接通过 this.$http 来发起数据请求
  20. // 2. 根据接口API文档,知道,获取列表的时候,应该发起一个 get 请求
  21. // 3. this.$http.get('url').then(function(result){})
  22. // 4. 当通过 then 指定回调函数之后,在回调函数中,可以拿到数据服务器返回的 result
  23. // 5. 先判断 result.status 是否等于0,如果等于0,就成功了,可以 把 result.message 赋值给 this.list ; 如果不等于0,可以弹框提醒,获取数据失败!
  24. this.$http.get('api/getprodlist').then(result => {
  25. // 注意: 通过 $http 获取到的数据,都在 result.body 中放着
  26. var result = result.body
  27. if (result.status === 0) {
  28. // 成功了
  29. this.list = result.message
  30. } else {
  31. // 失败了
  32. alert('获取数据失败!')
  33. }
  34. })
  35. }
  36. }
  37. });
  38. </script>

如上方代码所示,第一步是在全局的位置写绝对路径

  1. Vue.http.options.root = 'http://smyhvae/';

第二步是在Ajax请求的url中写相对路径:(注意,前面不要带/

  1. this.$http.get('api/getprodlist')