我在我的代码中使用这个 ajax 调用,但它每次都会触发错误函数。有人知道为什么会这样吗?
$.ajax({
type:'GET',
url: 'https://s3.amazonaws.com/GSTArticles/GoogleMaps/Landmarks.xml',
datatype: 'xml',
success: function(xml){
console.log(xml);
},
error: function(err){
alert("ERROR!");
}
});
据我了解,语法看起来是正确的。有人可以帮我看看为什么这会触发错误,而不是将 xml 放入我的控制台吗?谢谢。
我也在控制台中看到了这一点:XMLHttpRequest cannot load https://s3.amazonaws.com/GSTArticles/GoogleMaps/Landmarks.xml. Origin null is not allowed by Access-Control-Allow-Origin.