iphone上的离子应用程序存在问题。 Ionic将此写入index.html:
<iframe src="gap://ready" style="display:none;">...</iframe>
应用程序的控制台输出每秒循环此错误大约40次:
Refused to load gap://ready because it appears in neither the child-src directive nor the default-src directive of the Content Security Policy.
我猜每次使用angular的dirtycheck工作时,都会抛出此错误。 iframe来自何处以及如何摆脱iframe和错误?
答案 0 :(得分:10)
解决方案,只需在index.html
中添加以下元标记:
<meta http-equiv="Content-Security-Policy" content="default-src * data: cdvfile: gap:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' 'unsafe-eval'"/>