所以在一个Angular2应用程序中我有一个名为' recipe.ingredients'的字符串数组,我有一个表单设置允许你编辑成分,用按钮添加和删除文本字段(和数组中的项目。)
<ul class="list-unstyled">
<div class="row" *ngFor="let ingredient of recipe.ingredients; let i=index">
<li>
<div class="col-xs-4">
<input
size="20"
type="text"
class="form-control"
[ngModel]="recipe.ingredients[i]"
#t
(blur)="recipe.ingredients[i]=t.value"
required>
</div>
<div class="btn-group col-xs-2" role="group">
<button
type="button"
class="btn btn-default btn-xs"
(click)="recipe.ingredients.splice(i,1)">-</button>
<button
type="button"
class="btn btn-default btn-xs"
(click)="recipe.ingredients.splice(i+1,0,'')">+</button>
</div>
</li>
</div>
</ul>
你会注意到我没有通过[(ngModel)]双向绑定到recipe.ingredients [i],而这是因为我尝试过这样做,每次你输入一个字符,文本框将失去焦点。我认为这与* ngFor踩过数组有关。无论如何,目前这种解决方法很好,但现在我添加了一些功能,我需要两种数据绑定才能工作。知道如何重构这个以使其工作吗?
答案 0 :(得分:10)
使用trackBy
:
<div class="row" *ngFor="let ingredient of recipe.ingredients; let i=index;
trackBy:customTrackBy">
[(ngModel)]="recipe.ingredients[i]"
customTrackBy(index: number, obj: any): any {
return index;
}
感谢Günter:https://stackoverflow.com/a/36470355/215945,可以通过此SO搜索找到:https://stackoverflow.com/search?q=%5Bangular2%5D+ngfor+ngmodel
解决此问题的另一种方法https://stackoverflow.com/a/33365992/215945是使用对象数组而不是基元数组。而不是
recipe = { ingredients: ['salt', 'flour'] };
使用
recipe = { ingredients: [{item: 'salt'}, {item: 'flour'}] };