无法导航到cordova中的某个URL

时间:2015-06-17 12:39:22

标签: android cordova whitelist

当我使用以下命令时,我无法导航到某个URL:

poll

在我的cordova config.xml文件中,我已指定使用带通配符的默认cordova设置访问所有源:

window.location.href = "http://google.com";

以下是打印到控制台的位置:

<access origin="*" subdomains="true" />

我在Android中使用cordova 5.1.1版本运行我的应用程序。

1 个答案:

答案 0 :(得分:4)

有时候,默认的访问设置还不够,我真的不知道为什么,但我想我知道如何修补它。

尝试安装此插件:

cordova plugin add https://github.com/apache/cordova-plugin-whitelist

然后,在config.xml中添加此行

<allow-navigation href="http://google.com/*" />

再次编译并告诉我它是如何进行的! :)