在网络选项卡上的 chrome 开发工具中,我可以看到200 request。
问题是我收到null我的响应和以下错误消息
跨域读取阻塞 (CORB) 阻止跨域响应
function submit(id,player){
var http = new XMLHttpRequest();
var guess = document.getElementById(id).value
http.onreadystatechange = function(){
if(http.readyState == 4 && http.status == 200){
console.log(http.response)
}
}
http.open("GET", "https://www.myEndPoint.com, true);
http.responseType="json"
http.send();
}