我正在尝试使用AngularJS构建Android phonegap / cordova应用程序。我正在尝试发出POST请求,但我不断收到404 Not Found (from cache)
。
我的POST请求
return $http({
method: 'POST',
url: myURL ,
data: {data: dataObj}
})
.then(function (res) {
return res.data;
});
我在config.xml中安装了白名单插件
<plugin name="cordova-plugin-whitelist" spec="~1.2.1" />
<access origin="*" />
<allow-intent href="*" />
<allow-navigation href="*" />
我的index.html
中设置了Content-Security-Policy
<meta http-equiv="Content-Security-Policy" content="default-src *; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' 'unsafe-eval'">
但我仍然从缓存错误中获取404。对我做错了什么想法?
由于