提问人:Fabi 提问时间:2/13/2019 最后编辑:sideshowbarkerFabi 更新时间:7/14/2021 访问量:7648
相当于 XHR 或 Ajax 库中的 Fetch 'no-cors' 模式?
Equivalent of Fetch 'no-cors' mode in XHR or Ajax libraries?
问:
有没有办法在现有(以及大多数浏览器支持的)HTTP请求中编写fetch {mode: 'no-cors'}?举个例子,我想知道是否可以翻译这个:
fetch(url, { mode: 'no-cors'})
.then(function (response) {
console.log(response);
});
放入某种 XMLHttpRequest 或 Ajax 中。我尝试了几种方法,它们的行为不同 - 我只想要 fetch 返回的不透明响应。
谢谢!
答: 暂无答案
评论
xhr.open(METHOD, URL, true)
true
xhr.open()