阅读量:6
在axios中使用post提交表单数据,可以通过以下步骤实现:
- 引入axios库:
import axios from 'axios';
- 使用axios的post方法提交表单数据,传入表单数据和请求地址:
axios.post('https://example.com/api/form-submit', { name: 'John Doe', email: 'johndoe@example.com', message: 'Hello, World!' }) .then(response => { console.log(response.data); }) .catch(error => { console.error(error); });
在上面的示例中,我们使用了post方法向https://example.com/api/form-submit
地址提交了一个包含name、email和message字段的表单数据。提交成功后,我们打印了返回的数据,如果请求失败,我们打印了错误信息。
这样就可以使用axios提交表单数据了。