我有一个垫子选择,其中包含一个约束和清单时间,我单击该约束,然后将其添加到一个列表中,以便在该垫子选择下显示它。
<mat-form-field style="width: 100%;">
<mat-select placeholder="Contrats" formControlName="contrat" multiple>
<mat-option *ngFor="let contrat of contrats$ | async" [value]="contrat.code" (click)="addContrat(contrat.code,contrat.label)">
{{ contrat.label }}
</mat-option>
</mat-select>
</mat-form-field>
这是允许我添加约束的功能
public list: any[] = [];
addContrat(code: string, label: string) {
this.list.push({ code, label });
}
removeContract(i: number) {
this.list.splice(i, 1);
}
这是tempalte:
<mat-chip-list [multiple]="true">
<mat-chip style="width:100%" *ngFor="let x of list; let i=index" >
{{x.code}} -- {{x.label}}
<mat-icon matChipRemove aria-label="" (click)="removeContract(i)">clear</mat-icon>
</mat-chip>
</mat-chip-list>
所以我想当我单击“删除”时,垫子选择将被更新
答案 0 :(得分:1)
我认为您可能需要像这样“可移动”属性来装饰芯片
<mat-chip *ngFor="let fruit of fruits" [selectable]="selectable"
[removable]="removable" (removed)="remove(fruit)">
{{fruit.name}}
<mat-icon matChipRemove *ngIf="removable">cancel</mat-icon>
</mat-chip>
https://stackblitz.com/angular/ebkrnrqbnne?file=app%2Fchips-input-example.html https://material.angular.io/components/chips/overview#chip-input
否则,如果可以接受一种简单的解决方案,我认为您可以将click事件移到芯片上而不是图标上。
<mat-chip style="width:100%" *ngFor="let x of list; let i=index" (click)="removeContract(i)">