vue中使用axios插件做post请求带参数
时间: 2024-02-09 13:40:13 浏览: 78
vue+axios+el-upload实现文件上传(带参数):
3星 · 编辑精心推荐
你可以使用axios插件的post方法,在请求中添加params参数,例如:
```
axios.post('/api/user', {
params: {
name: 'John Doe',
age: 25
}
})
.then((response) => {
console.log(response);
})
.catch((error) => {
console.log(error);
});
```
在这个例子中,我们向路径为“/api/user”的服务器发出post请求,并附带name和age参数。在服务器端,你可以使用相应的框架来读取这些参数,并进行相应的操作。
阅读全文