通过此链接,我们创建了Mat Chip格式,并且我还包括了Mat按钮以重置此'chip'表格值,但无法实现。
HTML
<mat-form-field class="demo-chip-list">
<mat-chip-list #chipList>
<mat-chip *ngFor="let keyword of keywords" [selectable]="selectable"
[removable]="removable" (remove)="remove(keyword)">
{{keyword}}
<mat-icon matChipRemove *ngIf="removable">cancel</mat-icon>
</mat-chip>
<input placeholder="Keywords"
[matChipInputFor]="chipList"
[matChipInputSeparatorKeyCodes]="separatorKeysCodes"
[matChipInputAddOnBlur]="addOnBlur"
(matChipInputTokenEnd)="add($event)" />
</mat-chip-list>
</mat-form-field>
<button color="warn" mat-button matTooltip="Clear / Cancel" (click)="reset()">
<i class="fa fa-trash fa-2x" style="color:#0468af;"></i>
</button>