在axios中使用post提交表單數據,可以通過以下步驟實現:
import axios from 'axios';
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提交表單數據了。