我有一个字符串数组,我希望每个字符串都绑定到一个输入。
但是,编辑输入似乎不会更新数组(可能是孤立的范围问题?)。
建议?
function Ctrl($scope) {
$scope.fruits = ['Apple', 'Mango', 'Banana', 'Strawberry'];
}
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<div ng-app>
<div ng-controller="Ctrl">
<div style="margin: 20px 0" ng-repeat="fruit in fruits">
<input type="text" ng-model="fruit" />
</div>
Fruits: {{fruits}}
</div>
</div>
您需要可以从
$index
获取的数组引用。但请注意,如果对 ng-repeat
进行任何过滤,则此方法将不起作用,因为索引基于过滤后的数组,而不是原始数组。
<div style="margin: 20px 0" ng-repeat="fruit in fruits track by $index">
<input type="text" ng-model="fruits[$index]" />
</div>
好吧,在我看来这就像一个案例
'ng-model 需要模型名称中有一个点才能与 范围,否则它将创建一个本地范围'
我建议是将数据结构从纯字符串更改为包含字符串作为属性的对象,例如:
$scope.fruits = [
{'title':'Apple'},
{'title':'Mango'},
{'title':'Banana'},
{'title':'Strawberry'},
];
现在,当你像这样将它绑定到 ng-model 时
<div style="margin: 20px 0" ng-repeat="fruit in fruits">
<input type="text" ng-model="fruit.title" />
</div>
然后它不会创建任何本地/子范围,而是能够绑定到
title
数组中项目的 fruits
属性。