<form (ngSubmit)="createTest()" #testForm="ngForm">
<div class="card" *ngFor="let question of questionsArr; let i=index;">
<div class="card-header">
<input type="text" placeholder="Question {{i+1}}" name="question{{i}}" class="form-control" [(ngModel)]="questionsArr[i].text">
</div>
<div class="card-block" *ngFor="let option of fillArray(oC); let u=index">
<input type="text" class="form-control" placeholder="Option {{u+1}}" name="option" id="option">
</div>
</div>
</form>
The below works well. But in the above, [(ngModel)]="questionsArr[i].text" seems to bind to the same thing regardless.
<label *ngFor="let item of items; let i=index; trackBy:trackByIndex">
{{items[i]}}
<input type="number" [(ngModel)]="items[i]">
</label>.
我做了一些测试并使用了下面的对象数组的对象数组,它的工作原理如下:
testarr = [
{
a: "a",
b: "b"
},
{
a: "aa",
b:"bb"
}
];
做一些测试,它起作用了。将ngModel
更改为仅questionsArr[i]
也会为每次迭代生成一个单独的对象。问题似乎是[(ngModel)]="questionsArr[i].text"
无效。
questionsArr只是一个数组:'new QuestionModel("Question Text", this.s.name, "",null);
'
这是我的组成部分的相关部分:
optionsArr: OptionModel[];
questionsArr: QuestionModel[];
blankQM: QuestionModel;
blankOM: OptionModel;
formTest: TestModel;
items: number[] = [1,2,3,4,5];
constructor(
private api: ApiService
) { }
ngOnInit() {
this.blankQM = new QuestionModel("Question Text", this.s.name, "",null);
this.blankOM = new OptionModel("Option Text");
this.formTest = new TestModel("", null);
this._getQuestionArrays();
this._getOptionArrays();
}
_getQuestionArrays(){
// this.fillArray(this.qC);
this.questionsArr = Array(this.qC).fill(this.blankQM);
}
_getOptionArrays(){
// this.fillArray(this.oC);
this.optionsArr = Array(this.oC * this.qC).fill(this.blankOM);
}
fillArray(qty){
return Array(qty).fill(0).map((e,i)=> i+ 1);
}
goBack(){
this.back.emit();
}
createTest(){
console.log(this.questionsArr);
// console.log(this.optionsArr);
console.log(this.testarr);
}
trackByIndex(index: number, value: QuestionModel){
return index;
}
testarr = [
{
a: "a",
b: "b"
},
{
a: "aa",
b:"bb"
}
];
}
从我收集的内容中我将使用trackBy
,并且它实现了它的假设,我不知道为什么我不能让它ngModel
绑定到正确的{{} 1}}访问questionsArr[i].text
的正确索引的text属性,因为访问questionsArr questionsArr
工作正常。
答案 0 :(得分:0)
原来
我确实是问题所在。更改了我的代码,使用for循环来填充数组。Array.fill