我试图在我的离子3应用程序中使用iframe。
当我在Android上运行时,iframe工作正常,但iOS不行。
在我的config.xml中,我添加了这些行(如其他stackoverflow问题中所述)
<access origin="*" />
<alow-navigation href="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
我在2个config.xml文件中添加这行
AppName/config.xml
AppName/platforms/ios/AppName/config.xml
但它仍然无效。在XCode上,我收到此错误消息:
ERROR Internal navigation rejected - <allow-navigation> not set for url='gap://ready'
withlist插件版本是
"cordova-plugin-whitelist": "^1.3.1"
我忘记了什么吗?
答案 0 :(得分:3)
config.xml中有拼写错误,请更改
<alow-navigation href="*" />
到
<allow-navigation href="*" />