最佳答案
Axios POST
请求正在触发控制器上的 URL,但是将 null 值设置为我的 POJO 类,当我在 chrome 中使用开发人员工具时,有效负载包含数据。我做错了什么?
Axios POST 请求:
var body = {
userName: 'Fred',
userEmail: 'Flintstone@gmail.com'
}
axios({
method: 'post',
url: '/addUser',
data: body
})
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});
浏览器回应:
如果我将标题设置为:
headers:{
Content-Type:'multipart/form-data'
}
请求引发错误
发布多部分/表单数据时出错。内容类型标头缺少边界
如果我在邮递员中发出相同的请求,那么它工作得很好,并且为 POJO 类设置了值。
有人可以解释如何设置边界或如何使用公理发送表单数据。