在ng-resource angularjs问题中定义custome头

时间:2017-02-08 12:33:14

标签: angularjs

我使用AngularJS v1.5.8并将内容类型设置为application/json,如下所示:

 .factory('UserService',function ($resource) {
    var resource =  $resource('http://192.168.1.247:8189/api/Account/RegisterUser',{ },{
        save:{
            method:'POST',
              headers : {
            'Content-Type' : 'application/json'
        }
        }
    });

    return resource;
});

在我的控制器中我有:

 .controller("MyController", function( $scope, UserService) {
    UserService.save({'cellPhone':'099999999'});
})

但它不起作用,请求作为'application / xml'发送(我提供不支持的媒体类型.erroe:415)。有什么问题?

0 个答案:

没有答案