目前我正在使用Ionic开发混合应用程序,我正试图通过rest api在DB中发布一些请求。我从桌面浏览器(离子服务器)工作正常,但部署到移动设备时代码相同,我得到403.我目前正在使用AngularJS $ http.post()方法。
var config = {
headers : {
'Content-Type': 'application/json',
'Accept': 'application/json'
}
}
var data = {"test":"someData"};
$http.post('url',data,config)
.success(function (data, status) {
//
})
.error(function (data, status) {
//getting 403 when deploy the code in android
});