没有从外部http加载Phonegap图像

时间:2016-11-28 17:45:22

标签: image cordova content-security-policy

我的phonegap应用程序使用phonegap 4.0运行良好。

使用相同的代码升级到6.0。加载从self加载的这些图像,但不加载来自外部http的图像。例如http://www.hihi.com。我尝试更改元CSP设置和config.xml,两者都没有帮助。

config.xml中

<access origin="*"></access>
<allow-navigation href="http://*/*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" /> 
<allow-intent href="*" />

index.html(添加了img-src *)

<meta http-equiv="Content-Security-Policy" content="default-src * 'unsafe-inline';img-src *; style-src 'self' 'unsafe-inline'; media-src *" />

任何其他原因?我从phonegap桌面服务器和phonegap移动应用程序运行

1 个答案:

答案 0 :(得分:0)

确定。知道原因但没有解决。这是因为phonegap桌面服务器应用程序覆盖了我们自己的CSP设置。

Link github.com/phonegap/connect-phonegap/issues/163 - Fxster 43分钟前编辑

安装到手机中时正在加载图片