vue axios发送post请求
时间: 2023-04-06 18:01:42 浏览: 157
[ vue ] axios 发送 POST 请求,后端不能通过 HttpServletRequest 获取参数
可以使用以下代码发送post请求:
```
axios.post(url, data)
.then(response => {
console.log(response.data);
})
.catch(error => {
console.log(error);
});
```
其中,url是请求的地址,data是要发送的数据。发送成功后,会在控制台输出响应的数据。
阅读全文