作者:幸福的小兔子3 | 来源:互联网 | 2024-09-26 12:02
一、vue-resource
1、引入资源方式
1)下载vue-resource.js,添加到项目中
2)CDN:http://www.bootcdn.cn/vue-resource/
3)npm install vue-resource 即可 。然后在main.js中配置import VueResource from ‘vue-resource’; 然后用Vue.use(VueResource) 方法启用插件。
2、使用$http,直接封装在methods中
1)get方式
this.$http.get('url',{param1:value1, param2:value2 }).then(function(response){ },function(response){ });
2)post方式
this.$http.post('url',{ param1:value1, param2:value2 },{ emulateJSON:true }).then(function(response){ },function(response){ });
注:put、delete类似
二、axios
1、引入资源方式
1)下载axios.min.js,添加到项目中
2)使用CDN:
3)npm方式: npm install axios
2、使用axios,直接封装在methods中
1)get方式
axios.get('url', {params: {param1: value1,param2:value2}}).then(function (response) {}).catch(function (error) {});
2)post方式:默认json格式
axios.post('/user', {firstName: 'Fred',lastName: 'Flintstone'}).then(function (response) {}).catch(function (error) {});
注:put、delete类似
三、ajax
1、引入资源方式
1)下载jquery.min.js,添加到项目中 http://jquery.com/download/
2)使用CDN:
https://cdn.bootcss.com/jquery/1.12.4/jquery.min.js
https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js
http://upcdn.b0.upaiyun.com/libs/jquery/jquery-2.0.2.min.js
http://lib.sinaapp.com/js/jquery/2.0.2/jquery-2.0.2.min.js
http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js
http://ajax.htmlnetcdn.com/ajax/jQuery/jquery-1.10.2.min.js
2、使用方式,直接封装在method中
$.ajax({url:'url',type:'POST', async:true, data:{name:'zhang',age:28},timeout:5000, dataType:'json', beforeSend:function(xhr){},success:function(data,textStatus,jqXHR){},error:function(xhr,textStatus){},complete:function(){}
})