我需要帮助。有人知道为什么我不能始终将 URL 加载到 phonegap/cordova iOS 中的 iframe 中吗?我注意到有些页面只是拒绝在 iframe 中加载,而其他页面则可以正常加载。我似乎也无法加载基于 SSL 的网站。例子:
<iframe src="http://ucla.edu"></iframe> //loads correctly
<iframe src="http://google.com"></iframe> //refuses to load
<iframe src="http://www.ufrj.br"></iframe> //loads correctly
<iframe src="http://192.168.20.95"></iframe> //loads correctly (this a local server I have inside my work network)
<iframe src="https://192.168.30.15"></iframe> //refuses to load (this also a local server but with a valid ssl cert (signed by startcom/startSSL)
我在 config.xml 中添加了stay-in-webview 和访问源标签(我可以在 iframe 中加载一些外部页面),但不确定为什么这种行为不一致。我用来开发的 Mac 可以正确加载所有这些。
我是新手,所以在开始将我的旧 webApps “移植”到移动平台之前,我正在尝试一些事情来围绕基础知识。我的开发系统有: Lion Cordova 2.5 xCode 4.6
欢迎任何帮助。谢谢!