Laravel中的TokenMismatchException与React,fetch

时间:2016-12-20 17:51:01

标签: ajax xmlhttprequest fetch laravel-5.3

我在资源控制器中发布帖子请求,并在标题中添加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标头。

0 个答案:

没有答案