vue-axios简单基本用法

第一步:引入

<script src="https://unpkg.com/axios/dist/axios.min.js"></script>

Get请求

// 向具有指定ID的用户发出请求
axios.get('/user?ID=12345')
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});
 
// 也可以通过 params 对象传递参数     传参!!!!!!!!!!!!
axios.get('/user', {
params: {
ID: 12345
}
})
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});

POST请求

axios.post('/user', {
firstName: 'Fred',//传参对象
lastName: 'Flintstone'
})
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});

猜你喜欢

转载自blog.csdn.net/qq_42944436/article/details/104694133