如何停止使用Angular Material芯片在列表中添加重复值?因此,例如,我想在水果列表中只添加一个苹果,当我添加Lemon时,也只想添加一个。现在,我可以添加多次。当我关闭芯片时,我希望能够再次添加它。我将不胜感激任何帮助。谢谢!
import {COMMA, ENTER} from '@angular/cdk/keycodes';
import {Component, ElementRef, ViewChild} from '@angular/core';
import {FormControl} from '@angular/forms';
import {MatAutocompleteSelectedEvent, MatChipInputEvent} from '@angular/material';
import {Observable} from 'rxjs';
import {map, startWith} from 'rxjs/operators';
/**
* @title Chips Autocomplete
*/
@Component({
selector: 'chips-autocomplete-example',
templateUrl: 'chips-autocomplete-example.html',
styleUrls: ['chips-autocomplete-example.css']
})
export class ChipsAutocompleteExample {
visible: boolean = true;
selectable: boolean = true;
removable: boolean = true;
addOnBlur: boolean = false;
separatorKeysCodes = [ENTER, COMMA];
fruitCtrl = new FormControl();
filteredFruits: Observable<any[]>;
fruits = [
'Lemon',
];
allFruits = [
'Apple',
'Lemon',
'Lime',
'Orange',
'Strawberry'
];
@ViewChild('fruitInput') fruitInput: ElementRef;
constructor() {
this.filteredFruits = this.fruitCtrl.valueChanges.pipe(
startWith(null),
map((fruit: string | null) => fruit ? this.filter(fruit) : this.allFruits.slice()));
}
add(event: MatChipInputEvent): void {
const input = event.input;
const value = event.value;
// Add our fruit
if ((value || '').trim()) {
this.fruits.push(value.trim());
}
// Reset the input value
if (input) {
input.value = '';
}
this.fruitCtrl.setValue(null);
}
remove(fruit: any): void {
const index = this.fruits.indexOf(fruit);
if (index >= 0) {
this.fruits.splice(index, 1);
}
}
filter(name: string) {
return this.allFruits.filter(fruit =>
fruit.toLowerCase().indexOf(name.toLowerCase()) === 0);
}
selected(event: MatAutocompleteSelectedEvent): void {
this.fruits.push(event.option.viewValue);
this.fruitInput.nativeElement.value = '';
this.fruitCtrl.setValue(null);
}
}
/** Copyright 2018 Google Inc. All Rights Reserved.
Use of this source code is governed by an MIT-style license that
can be found in the LICENSE file at http://angular.io/license */
<mat-form-field class="demo-chip-list">
<mat-chip-list #chipList>
<mat-chip
*ngFor="let fruit of fruits"
[selectable]="selectable"
[removable]="removable"
(removed)="remove(fruit)">
{{fruit}}
<mat-icon matChipRemove *ngIf="removable">cancel</mat-icon>
</mat-chip>
<input
placeholder="New fruit..."
#fruitInput
[formControl]="fruitCtrl"
[matAutocomplete]="auto"
[matChipInputFor]="chipList"
[matChipInputSeparatorKeyCodes]="separatorKeysCodes"
[matChipInputAddOnBlur]="addOnBlur"
(matChipInputTokenEnd)="add($event)"
/>
</mat-chip-list>
<mat-autocomplete #auto="matAutocomplete" (optionSelected)="selected($event)">
<mat-option *ngFor="let fruit of filteredFruits | async" [value]="fruit">
{{ fruit }}
</mat-option>
</mat-autocomplete>
</mat-form-field>
<!-- Copyright 2018 Google Inc. All Rights Reserved.
Use of this source code is governed by an MIT-style license that
can be found in the LICENSE file at http://angular.io/license -->
答案 0 :(得分:1)
您可以检查数组中是否已存在该项目,然后添加。
尝试这样:
// Add our fruit
if ((value || '').trim()) {
if(!this.fruits.includes(value.trim())) {
this.fruits.push(value.trim());
}
}
或
// Add our fruit
if ((value || '').trim()) {
let index = this.fruits.indexOf(value.trim())
if(index == -1)
this.fruits.push(value.trim());
}
答案 1 :(得分:0)
您可以检查所选事件是否已添加芯片。替换为:
selected(event: MatAutocompleteSelectedEvent): void {
this.fruits.push(event.option.viewValue);
this.fruitInput.nativeElement.value = '';
this.fruitCtrl.setValue(null);
}
与此:
selected(event: MatAutocompleteSelectedEvent): void {
if (!this.fruits.includes(event.option.viewValue)) {
this.fruits.push(event.option.viewValue);
}
this.fruitInput.nativeElement.value = '';
this.fruitCtrl.setValue(null);
}
答案 2 :(得分:0)
要从列表中将其删除,请在已添加元素的情况下从以下选项中将其删除:
const props = {id: "someId"}
console.log(`https://robohash.org/${props.id}?size=200x200`);
答案 3 :(得分:0)
我是 angular 的初学者,也遇到了类似的问题。这就是我在选择一个复选框时如何解决它,一个选定的功能被触发,所以你必须在那里解决问题。
selected(event: MatAutocompleteSelectedEvent): void {
if (!this.fruits.includes(event.option.viewValue)) {
this.fruits.push(event.option.viewValue);
}
this.fruitInput.nativeElement.value = '';
this.fruitCtrl.setValue(null);
}