我提到了this link,但没有运气。当我在地址栏中使用以下链接时,浏览器会显示json数据。
http://xxxx.xxx.com:1234/products.json
//只有示例链接
但是当我尝试以下代码时,
$.ajax({
url : 'http://xxxx.xxx.com:1234/products.json',
dataType: 'json',
async: false,
success: function(data) {
alert( "test" );
},
error : function() {
alert("Sorry, The requested property could not be found.");
}
});
始终显示错误消息。我的方法有什么问题?