我正在使用javscript文件读取JSON数据并将其发送到我的html文件中,所有内容都在文件中,服务器上没有任何内容,但是它无法正常工作,错误语法:
CORS策略已阻止从源“空”访问“ file:/// C:/Users/USER/Desktop/Websites/PROMO%20CODES/jpr.JSON”处的XMLHttpRequest:仅支持跨源请求用于协议方案:http,数据,chrome,chrome扩展名,chrome不受信任的https。
index.js:10 GET文件:/// C:/Users/USER/Desktop/Websites/PROMO%20CODES/jpr.JSON net :: ERR_FAILED
我的密码
function getData() {
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
var myObj = JSON.parse(this.responseText);
document.getElementById("demo").innerHTML = myObj.name;
}
};
xmlhttp.open("GET", "jpr.JSON", true);
xmlhttp.send();
}