要实现Angular Material的自动完成数据加载但不过滤正常工作,在Angular 6中,可以按照以下步骤进行操作:
npm install --save @angular/material @angular/cdk @angular/animations
MatAutocompleteModule
和MatInputModule
模块。在你的模块文件中添加以下代码:import { NgModule } from '@angular/core';
import { MatAutocompleteModule } from '@angular/material/autocomplete';
import { MatInputModule } from '@angular/material/input';
@NgModule({
imports: [
MatAutocompleteModule,
MatInputModule
],
exports: [
MatAutocompleteModule,
MatInputModule
]
})
export class MyMaterialModule { }
{{ option }}
import { Component } from '@angular/core';
import { FormControl } from '@angular/forms';
import { Observable } from 'rxjs';
import { startWith, map } from 'rxjs/operators';
@Component({
selector: 'app-my-component',
templateUrl: './my-component.component.html',
styleUrls: ['./my-component.component.css']
})
export class MyComponent {
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));
}
displayFn(value: string): string {
return value ? value : '';
}
}
在这个例子中,我们使用FormControl
来处理输入值的变化,并使用Observable
和map
操作符来过滤选项并异步地显示在自动完成下拉列表中。 displayWith
函数用来定义如何显示选项的文本。
通过按照上述步骤操作,你就能够在Angular 6中实现Angular Material的自动完成数据加载但不过滤正常工作了。
下一篇:Angular Material的“Bootstrap sr-only equivalent”等价写法 在Angular Material中,等价于“Bootstrap sr-only”的写法