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

我的config.xml文件中有这个

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


看来白名单无法使用。.我在做什么错?

最佳答案

首先通过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;">

关于javascript - 白名单无法在Ionic中使用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33782591/

10-12 06:09