axios post 俩个参数
时间: 2023-11-16 07:01:46 浏览: 69
vue axios post发送复杂对象问题
5星 · 资源好评率100%
axios post请求可以通过传递一个对象来携带多个参数,也可以通过传递一个URLSearchParams对象来携带多个参数。下面是两种方法的示例代码:
```javascript
// 通过对象传递参数
axios.post('/api', {
firstName: 'John',
lastName: 'Doe'
})
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});
// 通过URLSearchParams对象传递参数
const params = new URLSearchParams();
params.append('firstName', 'John');
params.append('lastName', 'Doe');
axios.post('/api', params)
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});
```
阅读全文