我如何通过 ajax json tomcat 从本地主机连接到另一台服务器以获取 json。如果我通过在浏览器中输入 url 来执行查询位置,则会返回正确的 json,但是如果我使用 jquery ajax 来执行此操作,我会失败。我已经尝试过使用 jsonp 并且无法正常工作。我在另一个上更改了 ajax 的 url,它可以工作。
$.ajax({
url : myUrl,
type: 'GET',
dataType: 'json',
jsonp : 'json.wrf',
jsonpCallback: 'loadData',
dataFilter: function(data) {
alert('filter');
},
success: function(data) {
alert('success');
},
error: function(d,msg) {
alert('Error');
}
});