我正在创建一个复选框列表,并创建另一个复选框,当我单击该复选框时,所有列出的复选框都被选中,但是当我取消选中一个复选框时,所有复选框都未被选中。这是我的代码:
<input type="checkbox" class="custom-control-input" (change)="inviteAll()" [(ngModel)]="checked">
<ul>
<li class="peopleselectlist-item" *ngFor="let connection of connections">
<img *ngIf="connection.imageUrl === '' || connection.imageUrl === null" src="assets/images/default_user.png" alt="" class="connection-img">
<img *ngIf="connection.imageUrl !== '' && connection.imageUrl !== null" src="{{connection.imageUrl}}" alt="" class="connection-img">
<h5>{{connection.firstName}}</h5>
<label class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" value="{{connection.userId}}" (change)="tagUser(connection.userId)" [(ngModel)]="checked">
<span class="custom-control-indicator"></span></label> </li> <ul>
如何解决此问题。当我选择一个checkox时,仅取消选中该复选框。
答案 0 :(得分:0)
尝试为唯一性添加索引值。像这样:
*ngFor="let connection of connections;let i = index"
并将[(ngModel)]="checked"
更改为[(ngModel)]="checked[i]"
并创建ts / js文件中的已检入数组。另外,尝试在复选框字段中id={{i}}
。