1

从今天开始我一直有这个问题,直到昨晚这才成为问题,我能够点击 API 并让网络应用程序正常工作,该应用程序是使用 React-JS 构建的,最初我们有CORS 问题和 CORS 插件已安装并启用以使其正常工作。现在CORB的问题已经出现了,经过修复,它们都没有奏效。我们所有的 API 都以这种方式调用:

fetch('API_URL', {
    headers: {
      'Accept': 'application/json, text/plain, application/xml,  */*',
      'Content-Type': 'application/json',
      'Access-Control-Allow-Headers': 'Content-Type',
    },
    method: 'POST',
    body: JSON.stringify(req)
  })
4

1 回答 1

0

This has been resolved , I just ran this : chrome.exe --disable-web-security , this is on windows , The CORB issue is resolved.

于 2019-02-14T19:27:54.857 回答