移动小部件中的AJAX请求

时间:2010-08-12 16:54:47

标签: javascript widget mobile-phones w3c

我已经在我的移动小部件中添加了AJAX调用的代码,但我没有收到回复。有什么想法吗?

$.ajax({
    type: "GET",
    url: "http://www.tfl.gov.uk/tfl/syndication/feeds/disruptions-tube-offset-now.xml",
    dataType: "xml",
    success: function(xml) {}
});

2 个答案:

答案 0 :(得分:1)

响应在成功函数

success: function(xml) {}

除非失败。

答案 1 :(得分:0)

您必须确保您的config.xml包含widget标记内的安全标记和network =“public”属性:

<security>
  <access>
    <host>tfl.gov.uk</host>
  </access>
</security>