fetch不会在chrome中设置标头

时间:2016-08-11 13:15:05

标签: javascript ajax google-chrome

我尝试通过fetch()函数获取POST请求。问题是我的标题不会被设置,请求失败。

以下是我的请求的示例代码:

fetch('https://google.com', {
        method: 'POST',
        headers: {
          'Accept': 'application/json',
          'Content-Type': 'application/json', 
          'X-FOO-BAR': 'bla'
        },
        mode: "no-cors",
        body: JSON.stringify({
          data: "here"
        })
      });

我的主要问题是,Content-Type将设置为text/plain,这就是我的请求失败的原因。我添加了X-FOO-BAR标题只是为了查看它是否已设置。但它不会被设定。

0 个答案:

没有答案