TypeScript React axios发起的post请求为何不能发送数据?
axios.post(this.props.submitUrl, {
Author: comment.author,
Text: comment.text,
Sex: comment.sex,
Hobby: comment.hobby,
__RequestVerificationToken: comment.veritoken
})
.then(function (response) {
var id = response.data;
comment.id = id as number;
var newComments = theThis.state.comments.concat([comment]);
theThis.setState({ comments: newComments });
})
.catch(function (error) {
console.log(error);
});
post 的第二个参数应该就是需要发送到server的data吧,server能接受这个post请求,但是就是数据拿不到。为何?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
用chromer看看request header content-type 的值是什么? application/x-www-form-urlencoded 还是application/json,然后后台是用什么框架,express需要 bodyParser 中间件,koa需要koa-body中间件
又是你的问题,上次回答你的问题,后果就是被管理员严重警告,差点把我禁言。
前端没看出问题,那么就是服务端接收data的问题。
不知道你用的什么后端语言,node的话就是
有可能是
__RequestVerificationToken
不对,看看有没有报错。确认后端API是正常的。