在ngResource上调用$ save时,是否可以只发布 编辑的字段,而不是每次都发布整个模型?
var User = $resource('http://example.com/user/123/');
User.get(function(user) {
user.name="John Smith";
user.$save();
// What I *want* -> POST: /user/123/ {name:'John Smith'}
// What currently happens -> POST: /user/123/ {name:'John Smith', age: 72, location: 'New York', noOfChildren: 5}
});
答案 0 :(得分:1)
当我只想保存一个字段时,我使用静态.save()
方法,使用一个回调来获取响应,并在成功时更新本地对象:
$scope.saveOneField = function(modelInstance) {
ModelName.save({
id: modelInstance.id,
theField: <some value>
}, function(response) {
// If you want to update *all* the latest fields:
angular.copy(response, modelInstance.data);
// If you want to update just the one:
modelInstance.theField = response.data.theField;
});
};
这假定当POST请求发送到资源(即/modelnames/:id
)时,您的服务器会使用最新更新版本的modelInstace进行响应。
答案 1 :(得分:0)
不,这是不可能的,至少不是在实例上,请参见http://docs.angularjs.org/api/ngResource.$resource
[...]可以使用以下方法调用类对象或实例对象上的操作方法 参数:
- HTTP GET“类”操作:
Resource.action([parameters], [success], [error])
- 非GET“类”操作:
Resource.action([parameters], postData, [success], [error])
- 非GET实例操作:
instance.$action([parameters], [success], [error])
因此,只有将数据传递给“静态”保存方法,即User.save
才有可能。像这样:
User.get(function(user)
{
user.name = 'John Smith';
User.save({name: user.name});
});
这对您来说是否有用可能取决于您对user
实例的处理方式。