在Angular 8中,可以使用Angular Material库来实现带有下拉菜单的文本输入框。下面是一个示例代码:
首先,确保已经安装了Angular Material库。可以使用以下命令进行安装:
npm install @angular/material @angular/cdk @angular/animations
接下来,在app.module.ts
文件中导入所需的模块:
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { MatInputModule } from '@angular/material/input';
import { MatAutocompleteModule } from '@angular/material/autocomplete';
import { AppComponent } from './app.component';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
BrowserAnimationsModule,
FormsModule,
ReactiveFormsModule,
MatInputModule,
MatAutocompleteModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
然后,在app.component.ts
文件中定义一个FormControl和一个包含下拉选项的数组:
import { Component } from '@angular/core';
import { FormControl } from '@angular/forms';
import { Observable } from 'rxjs';
import { startWith, map } from 'rxjs/operators';
@Component({
selector: 'app-root',
template: `
{{ option }}
`,
styles: []
})
export class AppComponent {
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));
}
}
最后,在app.component.html
文件中使用mat-form-field
来包裹input
和mat-autocomplete
。
这样,就可以在Angular 8中实现带有下拉菜单的文本输入框了。