gpt4 book ai didi

javascript - 为什么它没有重定向到 webview?

转载 作者:行者123 更新时间:2023-12-03 06:37:31 25 4
gpt4 key购买 nike

当我单击按钮时,它应该重定向到我们手机中的默认浏览器以及输入的字符串,该字符串应该传递到浏览器。我在 Controller 中使用下面的代码

vm.socialMedialinkOpen = function(url) {
if (url.indexOf('http://') === 0 || url.indexOf('https://') === 0) {
$window.open("http://" + url, '_blank', 'location=yes');
} else {
$window.open(url,'_system','location=yes');
}
};

请帮助我,我是 Angular JS 的新手,提前致谢。

最佳答案

我建议将以下代码添加到您的 config.xml 文件中。它会导致所有外部链接在 native 应用程序中打开:

<access origin="*"/>
<allow-intent href="http://*/*" launch-external="yes"/>
<allow-intent href="https://*/*" launch-external="yes"/>
<allow-intent href="tel:*" launch-external="yes"/>
<allow-intent href="sms:*" launch-external="yes"/>
<allow-intent href="mailto:*" launch-external="yes"/>
<allow-intent href="geo:*" launch-external="yes"/>

关于javascript - 为什么它没有重定向到 webview?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38122622/

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