我正在使用$ resource服务来访问和更新我的API上的资源。
但是,当绑定到ng-model的对象的值设置为空时,我遇到了问题。绑定元素将从对象中删除。因此,在保存资源时,传递的数据中不存在该元素。
angular.module('myApp', [])
.controller('myCtrl', function($scope, $resource) {
var Person = $resource('persons/:id.json', {id: @id});
$scope.data = Person.get({id:123});
});
例如:data.name在下面的模板中设置为'':
<div ng-controller="myCtrl">
<input type="text" ng-model="data.name" />
<input type="button" ng-click="data.$save()" value="Save" />
</div>
保存时我需要传递数据上存在的元素,因为它将确定API是否将属性的实际值设置为空。否则,该属性不会更新,并保留其旧值。
答案 0 :(得分:1)
如果有人遇到同样的问题,问题不在于ng-model,而在于我作为输入的一部分添加了验证
<input type="text" ng-model="data.name" ng-required="true" />
它不是上述问题中显示的代码的一部分,但它与ng-required相关