我提到了这个链接,但没有运气。当我在地址栏中使用以下链接时,浏览器会显示 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.");
}
});
它总是显示错误消息。我的方法有什么问题?