0

我正在使用 PhoneGap 2.1.0 和 iOS 6.0

在 PhoneGap 中打开外部站点后
,我想从外部站点返回本地 html。
但是,我无法使用“file:///”URL 移动到本地“index.html”文件。
如何从外部站点移动到本地 html?

例子:

<a href="file:///Users/hoge/Library/Application Support/iPhone Simulator/5.0/Applications/00000000-0000-0000-0000-000000000000/HelloWorld.app/www/index.html">首页</一个>


我使用 Ajax 在启动应用程序时将 index.html 的路径发送到服务器。
服务器缓存了路径并显示了一个链接。

4

1 回答 1

0

尝试以下操作:

  • 打开你的文件Cordova.plist

  • 将参数设置OpenAllWhitelistURLsInWebViewYES

  • 右键单击ExternalHosts->Add Row

  • String新添加的行的值设置为*

因此,您新添加的行应如下所示:

Item0         String         *

有关上述内容的更多信息,请查看在线文档:http ://docs.phonegap.com/en/2.1.0/guide_whitelist_index.md.html#Domain%20Whitelist%20Guide 。

让我知道此解决方案是否适合您。

于 2012-10-15T07:22:55.523 回答