我在资源控制器中发布帖子请求,并在标题中添加X-CSRF-TOKEN:
let headers = new Headers();
headers.append('X-CSRF-TOKEN', document.querySelector('meta[name=csrf-token]').getAttribute('content'));
fetch('/housings', { method: 'POST', headers: headers }).then((res) => res.json())
.then((res) => {
this.state.housings.push(res);
});
this.setState({
housings: this.state.housings,
});
但是在请求后我用消息TokenMismatchException隐性500错误。 如果我查看chrome网络选项卡,我可以在请求中查看我的x-csrf-token标头。