0

真的,我对 Phongap Build 3.1.0 有一个严重的问题。

我在 config.xml 中添加了以下代码(在 /myApp/platform/android/res/ 下)

<access origin="http://google.com*" />
<content src="http://google.com" />

当我打开应用程序时,它会告诉我“ The connection to the server was unsuccessfull. (http://google.com)

假设我打开 URL 时inAppBrowser没有任何错误。

var ref = window.open('http://google.com', '_blank', 'location=no');
4

2 回答 2

1

尝试将其放入 www 下的 config.xml 中

<content src="index.html" />
<access origin="http://127.0.0.1*" />
<access origin="http://*.google.com" />
于 2013-10-09T20:17:41.240 回答
1

我在 3.1 中遇到了类似的问题,发现这是因为 3.1 更改了白名单语法,如此处所述:http: //docs.phonegap.com/en/3.1.0/guide_appdev_whitelist_index.md.html

尝试这个:

<access origin="*://*.google.com/*" subdomains="true" />
于 2013-12-19T02:51:35.917 回答