无法在移动设备上使用$ http.post(),但在浏览器中工作正常

时间:2016-05-10 03:22:55

标签: angularjs cordova rest post http-status-code-403

目前我正在使用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
                });

0 个答案:

没有答案