我正在研究 javascript 和 json,我需要从另一台服务器获取我的 json 文件。我已经使用本地 json 文件进行了一些 javascript 测试,但现在我想将所有代码转换为 jsonp,因为我需要处理另一个域上的文件。我的代码是:
function jsonEntity()
{
var richiestaEntity = new XMLHttpRequest();
richiestaEntity.onreadystatechange = function()
{
if(richiestaEntity.readyState == 4)
{
var objectentityjson = {};
window.arrayEntity= []; //creazione dell'array che conterrà le entity
objectentityjson = JSON.parse(richiestaEntity.responseText);
arrayEntita = objectentityjson.cards;
return arrayEntita;
}
}
richiestaEntity.open("GET", "myjson.json", true);
richiestaEntity.send(null);
}
如何在不丢失代码结构的情况下使用 jsonp 而不是本地 json?