我认为同样的起源意味着没有CORS,反之亦然.
JavaScript的Fetch API模式选项的两个选项有什么区别?
另外,在规范中,它说:
Even though the default request mode is “no-cors”,standards are
highly discouraged from using it for new features. It is rather
unsafe.
为什么不安全?资料来源:https://fetch.spec.whatwg.org/#requests
解决方法
同一来源,您只能对您的来源执行请求,否则请求将导致错误.
没有空档,您可以对其他来源执行请求,即使它们没有设置所需的CORS头,但是会得到一个opaque response.
您可以阅读更多关于MDN:https://developer.mozilla.org/en-US/docs/Web/API/Request/mode和https://developer.mozilla.org/en-US/docs/Web/API/Response/type.