Ionic3(Angular4) CORS on an emulator

我只是一个虾纸丫 提交于 2019-12-02 00:13:16

under your config.xml give the location of your localhost

eg:

<content src="http://10.10.1.1:8100" />
<access origin="http://10.10.1.1:8100" />
<allow-navigation href="http://10.10.1.1:8100" />

further more make sure you add the proxy url under ionic.config.json

"proxies": [{
        "path": "/rest",
        "proxyUrl": "http://10.10.10.1:8081/rest"
    }]
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!