白名单不在Ionic工作

时间:2015-11-18 14:26:28

标签: javascript android angularjs ionic whitelist

应用程序从某个服务器上的php脚本获取json数据。它在我的笔记本电脑上工作正常,但在Android手机上无效。

我在config.xml文件中有这个

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

看起来白名单不起作用..我做错了什么?

2 个答案:

答案 0 :(得分:1)

首先删除白名单插件 cordova插件删除cordova-plugin-whitelist ,然后通过 cordova插件添加cordova-plugin-whitelist 安装。最后,在index.html文件中添加这些标记 <meta http-equiv="Content-Security-Policy" content="default-src *; style-src &apos;self&apos; &apos;unsafe-inline&apos;; script-src &apos;self&apos; &apos;unsafe-inline&apos; &apos;unsafe-eval&apos;">

答案 1 :(得分:0)

不久前,科尔多瓦改为限制性更强的白名单方法。 从那时起,您需要安装cordova-plugin-whitelist才能访问外部资源。

事情正在你的labtop上工作,而不是在这个方向上的移动点。