从外部源拉取数据并获取请求的资源上不存在"访问控制允许源"标头



我试图从外部源提取JS文件,并得到以下错误:

请求的资源上不存在"Access Control Allow Origin"标头。因此,不允许访问源"null"。

我试图提取的文件是一个JS文件,里面有数据

var xhr = new XMLHttpRequest();
xhr.open("get", "https://s3-ap-southeast-2.amazonaws.com/[userid]/data.js", true);
xhr.onload = function(){  //instead of onreadystatechange
    //do something
    alert("here");
};
xhr.send(null);

我也试过

var promise = $.ajax({
    url: "https://s3-ap-southeast-2.amazonaws.com/[userid]/data.js",
    method: 'GET'
});
promise.done(function (result) {
    alert("done");
}).fail(function(){
    alert("Data cannot be loaded at this time. Please ensure there are no ad blockers enabled.");
});

我已经用JSON文件尝试过了,这些都有效,但它不会加载到JS文件中。有人能发光吗?

您需要在获取数据的响应中添加CORS头。没有其他办法。

相关内容

  • 没有找到相关文章

最新更新