Axios使用
终端使用: npm install --save axios vue-axios
main.js添加:
import axios from 'axios'
Vue.prototype.$axios = axios;
1.get方式
this.$axios.get('/user', {
params: {
ID: 12345
}
})
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});
2.post方式
this.$axios.post('/user', {
firstName: 'Fred', // 参数 firstName
lastName: 'Flintstone' // 参数 lastName
})
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});
3.Axios API
this.$axios({
method: 'post',
url: '/user/12345',
data: {
firstName: 'Fred',
lastName: 'Flintstone'
}
})
.then(function(response){
})
.catch(function(err){
})
;