0

我有一个 mat select ,其中包含一个 contrats 列表,并且每次单击 contrat 我将其添加到列表中以便在 mat-select 下显示它。

 <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);
}

这是模板:

<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>

所以我想当我点击删除对比度时,垫选择将被更新

4

1 回答 1

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

否则,如果可以接受简单的解决方案,我认为您可以将点击事件移动到芯片上而不是图标上。

 <mat-chip style="width:100%" *ngFor="let x of list; let i=index" (click)="removeContract(i)">
于 2018-09-19T20:21:47.410 回答