标签:export params var action rom function ons error headers
1.axios基本使用
// axios 中的GET请求
axios.get( ‘/user‘, { params: { ID: ‘001’ } },{ headers:{"Authorization":"Bas"+"ccccccc"} } )
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});
// axios 中的POST请求
axios.post(‘/user‘, { firstName: ‘1‘, lastName: ‘2‘ }, { headers:{"Authorization":"Bas"+"ccccccc"} } )
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
})
import Vue from ‘vue‘; import axios from ‘axios‘;
Vue.prototype.$http=axios; //默认的根路径
axios.defaults.baseURL = ‘/api‘
标签:export params var action rom function ons error headers
原文地址:https://www.cnblogs.com/fxw1/p/14817170.html