我正在开发一个 Cordova Android 移动应用程序。使用 Sencha touch 作为 UI 框架。在应用程序中即时进行 Web 服务调用。它曾经可以在旧版本的 Cordova 上正常工作,最近将 Cordova proj 升级到 5.0.0,从那时起就无法在新版本的 Android 设备上访问任何 Web 服务。我在项目中包含了白名单插件。在 index.html 中还包含以下元标记
<meta http-equiv="Content-Security-Policy" content="default-src 'self' data: gap: https://ssl.gstatic.com 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; media-src *">
配置.xml:
<content src="index.html" />
<access origin="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
运行应用程序时抛出以下错误,
"Refused to connect to 'http://my-server-url.ss.yy.com:8080/SomeServ/rest/someapp/appdata?_dc=1433398248330' because it violates the following Content Security Policy directive: "default-src 'self' data: gap: https://ssl.gstatic.com 'unsafe-inline' 'unsafe-eval'". Note that 'connect-src' was not explicitly set, so 'default-src' is used as a fallback.
我无法从这里继续前进。在谷歌上尝试了很多建议,但没有用。请指导我这里缺少的是什么。
注意:在应用程序中我连接到多个服务器。
提前致谢!!