最新版本的Ionic CLI:5.4.2
我已经在Postman中测试了POST
端点,它可以正常工作。我也可以从我的Ionic应用程序内部执行GET
请求,而我只是无法执行POST
请求。
我已经安装了Cordova白名单插件
cordova plugin add cordova-plugin-whitelist
cordova prepare
我在config.xml
<access origin="http://api.example.test" />
<allow-intent href="http://api.example.test/*" />
<allow-navigation href="http://api.example.test/*" />
我已将以下内容添加到index.html
<meta http-equiv="Content-Security-Policy" content="font-src 'self' data:; img-src * data:; default-src gap://ready file://* *; script-src 'self' 'unsafe-inline' 'unsafe-eval' * ; style-src 'self' 'unsafe-inline' *">
我已经删除了白名单插件,然后重新安装了它。什么都没用;在Chrome中进行测试时,我只会不断收到404错误。
还有其他建议吗?