我已经在我的移动小部件中添加了AJAX调用的代码,但我没有收到回复。有什么想法吗?
$.ajax({
type: "GET",
url: "http://www.tfl.gov.uk/tfl/syndication/feeds/disruptions-tube-offset-now.xml",
dataType: "xml",
success: function(xml) {}
});
答案 0 :(得分:1)
响应在成功函数
中success: function(xml) {}
除非失败。
答案 1 :(得分:0)
您必须确保您的config.xml包含widget标记内的安全标记和network =“public”属性:
<security>
<access>
<host>tfl.gov.uk</host>
</access>
</security>