我正在尝试从 API 中提取数据,但是我在控制台中收到以下响应:
“跨域读取阻塞 (CORB) 阻止了 MIME 类型 application/json 的跨域响应。有关更多详细信息,请参见https://www.chromestatus.com/feature/5629709824032768。”
我正在尝试在 MAMP PRO 的本地服务器上运行它。
我的代码如下:
var ourRequest = new XMLHttpRequest();
ourRequest.open('GET',url,true);
ourRequest.onload = function(){
console.log(ourRequest.responseText);
}
ourRequest.send();