我真的遇到了Phongap Build 3.1.0的严重问题。
我在config.xml中添加了以下代码(在/ myApp / platform / android / res /下面)
<access origin="http://google.com*" />
<content src="http://google.com" />
当我打开APP时,它会告诉“The connection to the server was unsuccessfull. (http://google.com)
”
假如我打开inAppBrowser
开头的网址而没有任何错误。
var ref = window.open('http://google.com', '_blank', 'location=no');
答案 0 :(得分:1)
尝试将其放在www
下的config.xml中<content src="index.html" />
<access origin="http://127.0.0.1*" />
<access origin="http://*.google.com" />
答案 1 :(得分: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" />