我在 ng-repeat 中有一系列带有各种输入的表行,我正在尝试使用 angular 的内置表单验证来处理必填字段。一切正常,除了当我删除数组中支持 ng-repeat 的一项时。
这是我设置验证的方式
<td ng-class="{ 'has-error' : vm.testForm.itemName{{$index}}.$invalid }">
<input type="text"
name="itemName{{$index}}"
class="form-control"
ng-model="item.name"
required />
<div class="help-block"
ng-show="vm.testForm.itemName{{$index}}.$invalid"
ng-messages="vm.testForm['itemName'+$index].$error">
<span ng-message="required">Name is required</span>
</div>
</td>
Plunker 显示我的问题
https://plnkr.co/edit/Q1qyqlSG69EXR2lTrsHk
在 plunker 中,如果您删除表的第一行,您会注意到虽然最后一行仍然无效,但错误已附加到上面的行。然后当您填写最后一行以使其有效然后再次清空时,错误仍然显示在错误的行上。删除后续行只会将错误从实际的无效行移到更远的位置,直到它们根本不出现在表中。
我应该用另一种方法来验证这些输入吗?