FormArray 调整数据位置


get beans() {
    return this.validateForm.get('beans') as FormArray;
}

change(fromIdx, toIdx){
    const formGroup = this.beans.at(fromIdx);
    this.beans.removeAt(fromIdx);
    this.beans.insert(toIdx, formGroup);
}

trackByFn(index: any, item: any) {
    return index;
}

同时需要在ng-for循环部分增加trackBy
*ngFor="let item of beans.controls; let i = index; trackBy:trackByFn"

  

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/288135.html

(0)
上一篇 2022年9月7日
下一篇 2022年9月7日

相关推荐

发表回复

登录后才能评论