1) 发送get方式的请求
// 不带参数
axios.get('url').then((response) => {
console.log(response)
}).catch((err) => {
console.log(err)
})
// 带参数 方式1
axios.get('url?username=admin&password=123').then((response) => {
console.log(response)
}).catch((err) => {
console.log(err)
})
// 带参数 方式2
axios.get('url', {
params: {
username: "admin",
password: 123
}
}).then((response) => {
console.log(response)
}).catch((err) => {
console.log(err)
})
2) 发送post方式的请求
axios.post('url', {
username: "admin",
password: 123
})
.then((response) => {
console.log(response)
})
.catch(err => {
console.log(err);
})
网友评论