gpt4 book ai didi

iphone - Phonegap 应用程序 : External URL don't open in InApp Browser of IOS

转载 作者:可可西里 更新时间:2023-11-01 05:30:14 35 4
gpt4 key购买 nike

外部 URL 无法在我的 PhoneGap IOS 应用程序的系统浏览器中打开。我正在使用 PhoneGap Build 2.7.0。

Javascript:

window.open(myURL, '_blank', 'location=yes');

配置.xml

<plugins>
<plugin name="InAppBrowser" value="CDVInAppBrowser" />
</plugins>

<access origin="*" />

如何解决?当我使用 url“www.google.com”时,它工作正常,但是当我为我的应用程序使用必需的 url 时,即使该 url 在浏览器中工作正常,它也不起作用。

最佳答案

Javascript:

myURL = encodeURI(myURL);
window.open(myURL, '_blank', 'location=yes');

Using of encodeURI method fix the above issue

关于iphone - Phonegap 应用程序 : External URL don't open in InApp Browser of IOS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17569787/

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