我有一个IOS应用程序需要在应用程序内的iframe中加载一些外部URL。
我的代码看起来像
<body>
<iframe width="560" height="315" src="https://www.google.co.in/" frameborder="0" allowfullscreen></iframe>
<div class="footer"></div>
</body>
cordova plist:
OpenAllWhitelistURLsInWebView: YES
ExternalHosts: *
但是每当我尝试加载页面时都会收到错误
“无法加载错误的网页:操作无法完成。(NSURLErrorDomain错误-999。)”
我无法加载外部网址
有谁可以帮我解决这个问题
答案 0 :(得分:1)
更新你的config.xml
<access origin="*" />