gpt4 book ai didi

ios - Cordova 6.0 IOS 在 WebView 中加载外部 URL

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:56:22 24 4
gpt4 key购买 nike

我是 Cordova 的新手,需要一些帮助来完成一项简单的任务。

我有这个 hello world 应用程序,我试图在应用程序 WebView 上加载外部 url,我使用的代码是由 cordova 生成的代码,我对它所做的唯一更改是:

  • 添加了指向 http://www.google.pt 的链接在 index.html 文件上。
  • 已添加 <allow-navigation href="*" />到 config.xml 文件。

我已经仔细阅读了文档,据我所知,这个非常简单的更改应该允许我在应用程序中加载 url,但是,它没有。一旦我点击链接,safari 就会打开并加载谷歌。我需要它加载到应用程序中,而不是在 Safari 中。

我在 android 上测试了完全相同的东西,它运行完美。

这是我的 config.xml 文件:

<?xml version='1.0' encoding='utf-8'?>
<widget id="io.cordova.hellocordova" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>HelloCordova</name>
<description>
A sample Apache Cordova application that responds to the deviceready event.
</description>
<author email="dev@cordova.apache.org" href="http://cordova.io">
Apache Cordova Team
</author>
<content src="index.html" />
<plugin name="cordova-plugin-whitelist" spec="1" />
<access origin="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<platform name="android">
<allow-intent href="market:*" />
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
</platform>

<allow-navigation href="*" />
</widget>

这是我的 index.html 文件:

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Security-Policy" content="default-src 'self' data: gap: https://ssl.gstatic.com 'unsafe-eval'; style-src 'self' 'unsafe-inline'; media-src *">
<meta name="format-detection" content="telephone=no">
<meta name="msapplication-tap-highlight" content="no">
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width">
<link rel="stylesheet" type="text/css" href="css/index.css">
<title>Hello World</title>
</head>
<body>
<div class="app">
<h1>Apache Cordova</h1>
<div id="deviceready" class="blink">
<p class="event listening">Connecting to Device</p>
<p class="event received">Device is Ready</p>
</div>
<div style="margin-top: 20px; border: 1px solid grey;">
<a href="http://www.google.pt/">Google!</a>
</div>
</div>

<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript" src="js/index.js"></script>
</body>
</html>

我正在使用 cordova 6 并在带有 ios 9.2 的 ios 模拟器上进行测试,还使用 ​​8.1 进行了测试,但也不起作用。

知道哪里出了问题吗?

谢谢,西普里

最佳答案

这是一个 bug在 Cordova 中,只需删除 <allow-intent> 即可变通在 href 中有 http 和 https

<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />

像这样

 <?xml version='1.0' encoding='utf-8'?>
<widget id="io.cordova.hellocordova" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>HelloCordova</name>
<description>
A sample Apache Cordova application that responds to the deviceready event.
</description>
<author email="dev@cordova.apache.org" href="http://cordova.io">
Apache Cordova Team
</author>
<content src="index.html" />
<plugin name="cordova-plugin-whitelist" spec="1" />
<access origin="*" />

<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<platform name="android">
<allow-intent href="market:*" />
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
</platform>

<allow-navigation href="*" />
</widget>

关于ios - Cordova 6.0 IOS 在 WebView 中加载外部 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36036475/

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