我正在使用restangular,但我遇到了问题" Put"方法,它没有按预期工作
我的angularService代码
var userService = function (restangular) {
var resourceBase = restangular.all("account/");
restangular.addResponseInterceptor(function (data, operation, what, url, response, deferred) {
if (operation == "getList") {
return response.data;
}
return response;
});
this.getUserById = function (id) {
return resourceBase.get(id);
// return restangular.one("account", id).get();
};
this.updateUser = function(user) {
return user.Put();
};
}
我的控制器代码
var userEditController = function (scope, userService, feedBackFactory, $routeParams) {
scope.user = undefined;
scope.updateUser = function () {
userService.updateUser(scope.user).then(function (data) {
feedBackFactory.showFeedBack(data);
}, function (err) {
feedBackFactory.showFeedBack(err);
});
};
userService.getUserById($routeParams.id).then(function (data) {
scope.user = data.data; **// Please not here I am reading the object using service and this object is getting updated and pass again to the service for updating**
}, function (er) {
feedBackFactory.showFeedBack(er);
});
};
但我收到错误" Put"不是一个函数,我检查了用户对象,我发现用户对象没有进行重新分类(没有找到任何其他方法)。我该如何解决?
答案 0 :(得分:10)
你只能放置'在数据对象上。
customPUT([elem, path, params, headers])
就是你想要的。像这样使用它:
Restangular.all('yourTargetInSetPath').customPUT({'something': 'hello'}).then(
function(data) { /** do something **/ },
function(error) { /** do some other thing **/ }
);
答案 1 :(得分:2)
您只能将方法放在重新组合的对象中。要对任何对象进行触发,需要检查put方法,如果对象不包含任何put方法,则需要在restangularized对象中转换该对象。
将updateUser更改为以下内容:
this.updateUser = function(user) {
if(user.put){
return user.put();
} else {
// you need to convert you object into restangular object
var remoteItem = Restangular.copy(user);
// now you can put on remoteItem
return remoteItem.put();
}
};
Restangular.copy方法会在对象中添加一些额外的restangular方法。简而言之,它会将任何对象转换为resangularized对象。