角度材质2自动完成与角度5
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了角度材质2自动完成与角度5相关的知识,希望对你有一定的参考价值。
我正在通过向我的网站添加自动填充选择字段来实现目标。我想要一个自动填充选择字段填充我的mongoDB中的值。为了检索这些值我正在使用我的函数:
component.ts
this.availableFirmware = [];
this.terminalService.getFirmware().subscribe(firmware => {
this.availableFirmware = firmware.firmware;
component.html
<select class="form-control" id="sel2" [(ngModel)]="firmware" name="firmware">
<option *ngFor="let firmware of availableFirmware" [value]="firmware._id">
{{firmware.name}}
</option>
</select>
这项工作到目前为止,但我需要该字段是一个自动完成选择字段,搜索一切。所以,如果我的数组如下:
[
'John Doe',
'Christian Bale'
'Jenny Doehler'
]
我希望函数在我输入John Doe
时返回Jenny Doehler
和oe
。
到目前为止,我所做的是包括来自http://material.angular.io的角质材料2。我在那里找到了enter link description here的例子,但是也没有解决它,因为我在管道等方面遇到了一些错误。我无法使用从MongoDB中提取的数据创建一个简单的自动完成选择字段。
希望有人可以帮助我!
所以进一步的信息:这部分代码 - >
this.availableFirmware = [];
this.terminalService.getFirmware().subscribe(firmware => {
this.availableFirmware = firmware.firmware;
console.log(this.availableFirmware);
});
产生这个输出:,我想在自动填充字段中显示名称。这也是我的过滤功能无法工作的原因,因为this.availableFirmware是一个对象,我对如何拆分我自动完成所需的部分中的任何内容感到困惑。
看一下您引用的页面的Adding a Custom Filter示例。
打开StackBlitz示例,那里的代码几乎看起来你想要什么,除了索引测试应该是> -1
而不是=== 0
。
ngOnInit() {
this.filteredOptions = this.myControl.valueChanges
.pipe(
startWith(''),
map(val => this.filter(val))
);
}
filter(val: string): string[] {
return this.options.filter(option =>
option.toLowerCase().indexOf(val.toLowerCase()) > -1);
}
(不幸的是,所提供的StackBlitz不能在线工作,但如果你想在本地玩它,你可以导出它)。
你的代码
至于将示例与代码集成,请添加async
管道,因为filteredOptions是一个可观察的管道,而不是静态数组。
我假设选项列表仅在初始化时从MongoDB获取一次,因此您的代码将如下所示。
我不认为select
很容易适应自动完成,所以如果您对角度材料没问题,请坚持使用Angular Material StackBlitz示例中的模板。
模板
<form class="example-form">
<mat-form-field class="example-full-width">
<input type="text" placeholder="Pick one" aria-label="Number" matInput
[formControl]="myControl" [matAutocomplete]="auto"
[(ngModel)]="selectedName">
<mat-autocomplete #auto="matAutocomplete">
<mat-option *ngFor="let firmware of filteredOptions | async" [value]="firmware.name">
{{ firmware.name }}
</mat-option>
</mat-autocomplete>
</mat-form-field>
</form>
零件
@Component({
...
})
export class MyComponent {
myControl: FormControl = new FormControl();
availableFirmware = [];
filteredOptions: Observable<any[]>;
selectedFirmware = null;
selectedName = '';
ngOnInit() {
this.terminalService.getFirmware().subscribe(firmware => {
this.availableFirmware = firmware.firmware;
}
this.filteredOptions = this.myControl.valueChanges
.pipe(
startWith(''),
map(val => this.filter(val))
);
}
filter(val: any): any[] {
return this.availableFirmware.filter(firmware => {
return firmware.name.toLowerCase().indexOf(val.toLowerCase()) > -1;
});
}
}
这是我过滤我的列表的方式:
在html中:
(input)="filterfirmware($event.target.value)
在组件中:
private filterItems: any[] = [];
constructor(){}
private(_name: any){
this.filterItems = []
this.filterItems = this.availableFirmware.filter((firmware: any) =>
firmware.name.toLowerCase().indexOf(_name.toLowerCase()) === 0);
}
this.filterItems
现在将有这两个名字。
以上是关于角度材质2自动完成与角度5的主要内容,如果未能解决你的问题,请参考以下文章
如何在角度材料 2 中使用 mat-chip 和自动完成来保存选定的对象