Vue之axios请求数据
程序员文章站
2022-05-18 23:19:22
引入文件 代码块: 1、get请求: 2、post请求: 3、过个并发请求: ......
引入文件
<script src="https://cdn.staticfile.org/vue-resource/1.5.1/vue-resource.min.js"></script>
代码块:
1、get请求:
1 var params = { 2 locale: 1, 3 }; 4 // 向具有指定id的用户发出请求 5 axios.get('/user?id=12345') 6 .then(function (response) { 7 console.log(response); 8 }) 9 .catch(function (error) { 10 console.log(error); 11 }); 12 13 14 // 也可以通过 params 对象传递参数 15 axios.get('/user',{params:params}).then(function (res) { 16 console.log(res) 17 }).catch(function (err) { 18 console.log(err); 19 })
2、post请求:
1 axios.post('/url', { 2 sex: '1', 3 age: '2' 4 }) 5 .then(function (res) { 6 console.log(res); 7 }) 8 .catch(function (err) { 9 console.log(err); 10 });
3、过个并发请求:
1 function getone() { 2 return $http.get('/url/1'); 3 } 4 5 function getsecond() { 6 return $http.get('/url/2/secondurl'); 7 } 8 9 axios.all([getone(), getsecond()]) 10 .then(axios.spread(function (success, perms) { 11 //两个请求现已完成 12 }));
推荐阅读
-
vue axios数据请求get、post方法及实例详解
-
vue axios数据请求及vue中使用axios的方法
-
详解vue axios用post提交的数据格式
-
详解vue-cli 构建项目 vue-cli请求后台接口 vue-cli使用axios、sass、swiper
-
vue2.0学习之axios的封装与vuex介绍
-
vue项目使用axios发送请求让ajax请求头部携带cookie的方法
-
vue利用axios来完成数据的交互
-
vue-cli axios请求方式及跨域处理问题
-
Vue2学习笔记之请求数据交互vue-resource
-
解决vue中使用Axios调用接口时出现的ie数据处理问题