我正在尝试使用http://192.168.1.142/jasmine-device_2/login.html在phonegap中使用外部链接(cordova2.0.0)

对这个当地人来说很好用

self.viewController.wwwFolderName = @"www";
self.viewController.startPage = @"index.html";

但是显示错误
下面的ERROR:Start Page at 'http://192.168.1.142/jasmine-device_2/login.html' was not found.
self.viewController.wwwFolderName = @"http://192.168.1.142/jasmine-device_2";
self.viewController.startPage = @"login.html";

我如何在iPhone中使用外部链接。此外,此外部链接在android phonegap中工作正常。

提前致谢。

最佳答案

您是否在plist文件中添加了网址,如果没有,请尝试此操作

转到plist文件(在xcode / Supporting Files / cordova.plist中),您需要将字符串添加为ExternalHosts的子节点。为此,首先单击ExternalHosts标签左侧的小箭头,使箭头指向下方(这很关键)。然后右键单击“ExternalHosts”标签,然后单击“添加行”。然后将新行值设置为所需的任何值

关于ios - 尝试在iPhone上的Phonegap中使用外部链接时出错,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11948306/

10-11 14:54