我正在用 phonegap 和 jquery mobile 编写一个移动应用程序。我正在尝试使用此请求从服务器获取数据,但该请求不起作用:
$.ajax({
url : "https://localhost:8000/weatherData.json",
type: "GET",
dataType : "json",
success: function(){
$("#placeHold").text("hi");
},
error: function() {
$("#placeHold").text("error");
}
});
});
所以我相信我已经解决了我所有的语法错误,而且我不认为这是一个跨域问题,因为我在本地主机上并且我已经修复了这个错误。URL 只是 JSON 数据,它位于浏览器中的正确位置。placeHold 有效,我的文档中出现了错误字样。我只是不明白为什么数据不会加载。在 chromes 开发工具中我没有收到错误,它只是说失败变红并显示:
GET 'link' jquery-1.8.2.min.js:2
send jquery-1.8.2.min.js:2
p.extend.ajax jquery-1.8.2.min.js:2
(anonymous function) firstpage.html:184
k jquery-1.8.2.min.js:2
l.fireWith jquery-1.8.2.min.js:2
p.extend.ready jquery-1.8.2.min.js:2
D jquery-1.8.2.min.js:2