2

我正在使用 Phonegap 为多个平台构建应用程序,其中之一是 windows phone。

我在其他平台上遇到了类似的问题,让 Ajax 从 Web 上的 XML 文件中抓取内容。

我能够通过添加...来解决它

<access origin="*" />

到 config.xml 文件。

之后,它在黑莓、Android 和 IOS 上运行。

但是在 windows phone 模拟器上它不会获取数据。


根据此页面http://docs.phonegap.com/en/1.9.0/guide_whitelist_index.md.html Windows phone 甚至不需要 Access 标签,默认情况下应该可以访问所有域。

4

1 回答 1

-1

what you might want to try is adding the 'subdomains' tag like so:

<access subdomains="true" origin="http://phonegap.com"/>

if you application needs to fetch data from more than one domain

于 2012-09-12T19:43:56.880 回答