本文主要是介绍ERROR Internal navigation rejected - allow-navigation not set for url='xxx',希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
在cordova开发中如果出现 ERROR Internal navigation rejected - <allow-navigation> not set for url='xxx' 错误。
原因:没有设置白名单,ios9+拒绝请求。
解决方案: 在config.xml文件中配置
- <allow-navigation href="*" /> //即允许跳转到任意http协议的页面
运行 ok
这篇关于ERROR Internal navigation rejected - allow-navigation not set for url='xxx'的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!