我想从 domain2 (example2.com) 访问 domain1 (example.com) 中的 JSON 文件。例如,
$.ajax({
type:'get',
url: 'http://example.com/vigneshmoha.json',
success: function(data) {
console.log(data);
},
statusCode: {
404: function() {
console.log('Status code: 404');
}
}
});
我想从其他域(即)example2.com 向 example.com 发出这个 ajax 请求。
我试过 JSONP。我无法理解它是如何工作的。有人可以解释一下它的工作方式吗?