要创建一个带有创建选项的下拉菜单,您可以使用Angular Material的MatAutocomplete组件和MatOption组件。以下是一个简单的示例代码:
npm install @angular/material @angular/cdk @angular/animations
import { Component } from '@angular/core';
import { FormControl } from '@angular/forms';
import { Observable } from 'rxjs';
import { startWith, map } from 'rxjs/operators';
import { MatAutocompleteSelectedEvent } from '@angular/material/autocomplete';
@Component({
selector: 'app-your-component',
templateUrl: './your-component.component.html',
styleUrls: ['./your-component.component.css']
})
export class YourComponent {
myControl = new FormControl();
options: string[] = ['Option 1', 'Option 2', 'Option 3'];
filteredOptions: Observable;
constructor() {
this.filteredOptions = this.myControl.valueChanges.pipe(
startWith(''),
map(value => this._filter(value))
);
}
private _filter(value: string): string[] {
const filterValue = value.toLowerCase();
return this.options.filter(option => option.toLowerCase().includes(filterValue));
}
}
{{ option }}
Create {{ myControl.value }}
onOptionSelected(event: MatAutocompleteSelectedEvent) {
if (!this.options.includes(event.option.value)) {
// 处理创建选项的逻辑,例如将选项添加到选项数组中
this.options.push(event.option.value);
}
}
这是一个简单的示例,它演示了如何创建一个带有创建选项的下拉菜单。您可以根据自己的需求进行扩展和修改。