获取启用的复选框的 id 列表

我有一个表,其中有特定的列作为复选框。我分配了一个空列表。所以我想要的是启用的复选框的行的 ID。例如,如果 id 4 和 5 中启用了复选框,则列表应为 [4,5]


样本数据:


 { id:1,

  name: "A",

  qty: 6,

  value: 10

},

{  id:2,

  name: "B",

  qty: 4,

  value: 10

},

{  id:3,

  name: "C",

  qty: 1,

  value: 10

}

从服务获取数据:


 ngOnInit(): void {

this.dataService.getData().subscribe(res => {

  this.listes = res;

});

}


列表名称:


  checkboxselectlist: any[];

我的 stackblitz:https://stackblitz.com/edit/angular-ivy-4vnwed ?file=src%2Fapp%2Fapp.component.ts


慕村225694
浏览 106回答 1
1回答

温温酱

这应该对你有帮助。您需要将事件处理程序传递给 ngchange。在事件处理程序中,您可以获得元素 id,这应该可以帮助您更新列表。checkboxselectlist// in your app.component.tsfilterResults(obj: any, e: any) {&nbsp; &nbsp;console.log(obj);&nbsp;&nbsp; &nbsp;console.log(e.currentTarget.checked); // true or false&nbsp; &nbsp;// UPDATE LIST HERE&nbsp;}// in your app.component.html<tr *ngFor="let list of listes; index as i"><td>{{i+1}}</td><td>{{list.name}}</td><td>{{list.qty}}</td><td>{{list.value}}</td><td> <input type="checkbox" id="vehicle1"&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; name="vehicle1"&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;(change)="filterResults(list, $event)"></td></tr>
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript