axios param的数据始终post不过去
// Send a POST request
axios({
method: 'post',
url: this.url + 'vdata/vdata_cate/createVdataCateProcess',
data: {
param:JSON.stringify(this.formValidate),//转为json字符串
},
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
},
}).then((response) => {
//刷新taken 第10步
this.getNewToken();
if (response.data.r == "success") {
swal({
type: "success",
title: "成功!",
text: "添加成功",
confirmButtonText: "确认",
allowOutsideClick: true,
timer: 1300,
}, function() {
//取消窗口
});
} else {
console.log(response.data);
swal({
type: "error",
title: response.data,
});
}
});
param的数据始终post不过去
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
headers 中的 ContentType 和 Payload 冲突
经过
JSON.stringify
转换后是一个 JSON 字符串,但是application/x-www-form-urlencoded
要求是使用key=value
的形式对参数进行包装,多个参数使用&
拼接。解决办法。
qs.stringify
处理对象。JSON.stringify
将Content-Type
修改为application/json
。看下控制台有报错吗? 然后确认一下Network上的请求的参数没带上?
url会不会错了,或者没写端口;刷新token这样子你每次调用都得写,封装下axios然后在拦截器里面写会好很多
你是不是搞混了,data里面不用再写param了,应该用下面这一行就行了
data: JSON.stringify(this.formValidate),//转为json字符串