gpt4 book ai didi

android - 无法导航到 cordova 中的特定 URL

转载 作者:行者123 更新时间:2023-11-29 15:49:45 25 4
gpt4 key购买 nike

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

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

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

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

这是打印到控制台的位置:

Location {replace: function, assign: function, ancestorOrigins: DOMStringList, origin: "file://", hash: ""…}
ancestorOrigins: DOMStringList
assign: function () { [native code] }
hash: ""
host: ""
hostname: ""
href: "file:///android_asset/www/index.html"
origin: "file://"
pathname: "/android_asset/www/index.html"
port: ""
protocol: "file:"
reload: function reload() { [native code] }
replace: function () { [native code] }
search: ""
toString: function toString() { [native code] }
valueOf: function valueOf() { [native code] }
__proto__: Location

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

最佳答案

有时,默认访问设置不够用,我真的不知道为什么,但我想我知道如何解决这个问题。

尝试安装这个插件:

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

然后,在您的 config.xml 中,添加这一行

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

再次编译并告诉我它是怎么回事! :)

关于android - 无法导航到 cordova 中的特定 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30891871/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com