在mac上,cordova打包ionic项目为苹果手机app出现 这个问题:ERROR Internal navigation rejected - <allow-navigation> not set for url='about:blank'
解决方案:
出现这个错误的原因是因为没有设置白名单
打开项目》platform》ios》MyApp》 config.xml中加上
<allow-navigation href="*" />
就是这么简单。