Vue2.0用axios得到的数据怎么绑定
1个回答
2017-09-29
展开全部
安装 axios
使用 npm
?
1
npm install axios
使用 yarn
?
1
yarn add axios
使用 axios
如同使用 vue-resource 一样使用
main.js
?
1
2
import axios from 'axios'
Vue.prototype.$http = axios
执行 GET 请求
?
1
2
3
4
5
6
7
this.$http.get('/user?ID=12345')
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});
使用 npm
?
1
npm install axios
使用 yarn
?
1
yarn add axios
使用 axios
如同使用 vue-resource 一样使用
main.js
?
1
2
import axios from 'axios'
Vue.prototype.$http = axios
执行 GET 请求
?
1
2
3
4
5
6
7
this.$http.get('/user?ID=12345')
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询