我有一个简单的表格,用ng-repeat生成:
<form name="myForm">
<button ng-click="addFormElement()">+</button>
<div ng-repeat="model in models">
<input type="text" name="formElement{{$index}}" ng-model="model.value" />
</div>
</form>
点击“加号”按钮添加新元素。这是代码:
$scope.addFormElement = function() {
$scope.models.push({ value: "test"});
console.log($scope.myForm);
for (var i = 0; i < $scope.models.length; i++) {
console.log($scope.myForm["formElement"+i]);
}
};
问题:在第一个控制台日志中我可以看到当前添加的新输入字段,但是当我尝试在for循环中打印具体元素时,它会记录“undefined”。当我添加更多元素时,最后一个(当前添加的)总是在第一个日志中定义,但在第二个日志中未定义。你知道为什么吗?
答案 0 :(得分:2)
我找到了一个解决方案:
$timeout(function(){
for (var i = 0; i < $scope.models.length; i++) {
console.log($scope.myForm["formElement"+i]);
}
});
https://plnkr.co/edit/oTttVJrAOiSRn3jfde5q
您应该在 $ timeout 内调用它。你需要它来等待角度的下一个摘要周期。内部$ timeout将调用$ apply,它将强制同步双向数据绑定。