我可以毫无错误地运行离子服务。我还安装了cordova白名单插件,解决了api方面的CORS问题。
我也遵循了本教程Handling CORS issues with Ionic。我不知道为什么还有任何错误。我可以在离子发球和离子发球上运行应用程序-v但不能离子运行。有人能帮助我吗?
答案 0 :(得分:0)
可能问题是由白名单引起的。
如果未包含在您的cordova项目中,则应使用whitelist plugin
此外,您应该将其添加到config.xml:
<allow-navigation href="*" />
<allow-intent href="*" />
<access origin="*" />
并将此元数据添加到index.html或主页
<meta http-equiv="Content-Security-Policy" content="default-src *; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' 'unsafe-eval'">
这是通配符,在制作中你应该限制更多。