gpt4 book ai didi

javascript - 使用 Angular 的 matAutocomplete,如何显示对象的属性,但在别处引用对象本身?

转载 作者:行者123 更新时间:2023-11-30 19:03:42 26 4
gpt4 key购买 nike

例如我有标记:


<input type="text" class="form-control" placeholder="Project #" name="project" [(ngModel)]="key" (ngModelChange)="filterProjects(key);" matInput [matAutocomplete]="auto">
<mat-autocomplete #auto="matAutocomplete" (optionSelected)="setProject($event.option.value)">
<mat-option *ngFor="let project of filtered" [value]="project.ProjNum">
{{project.ProjNum}}
</mat-option>
</mat-autocomplete>

<div class="input-group-append">
<button class="btn btn-info" (click)="load(selectedProject)">Load</button>
</div>

当选择一个选项时,它会调用 setProject() 函数,该函数设置稍后用于我的加载按钮的 selectedProject。但是,由于它目前的功能,将值绑定(bind)到 [value]="project.ProjNum" 将使用项目编号调用 setProject。虽然将我的值设置为 [value]="project" 似乎很直观(这会将我的 selectedProject 设置为项目对象),但它现在将显示 [object Object] 在我的输入字段中。

我如何修改它以便我可以在我的选项之外直接引用 project 对象,而不仅仅是选择和显示的属性?

注意:我知道我可以只使用 ProjNum 过滤我的项目列表以找到正确的项目,然后设置我的 selectedProject,但我不想当我已经有了我想要的对象时,在列表中循环浪费资源。

最佳答案

您想使用displayWith 函数。它允许您定义一个函数,该函数返回您想要显示的值

来自docs :

<form class="example-form">
<mat-form-field class="example-full-width">
<input type="text" placeholder="Assignee" aria-label="Assignee" matInput [formControl]="myControl" [matAutocomplete]="auto">
<mat-autocomplete #auto="matAutocomplete" [displayWith]="displayFn">
<mat-option *ngFor="let option of filteredOptions | async" [value]="option">
{{option.name}}
</mat-option>
</mat-autocomplete>
</mat-form-field>
</form>



import {Component, OnInit} from '@angular/core';
import {FormControl} from '@angular/forms';
import {Observable} from 'rxjs';
import {map, startWith} from 'rxjs/operators';

export interface User {
name: string;
}

/**
* @title Display value autocomplete
*/
@Component({
selector: 'autocomplete-display-example',
templateUrl: 'autocomplete-display-example.html',
styleUrls: ['autocomplete-display-example.css'],
})
export class AutocompleteDisplayExample implements OnInit {
myControl = new FormControl();
options: User[] = [
{name: 'Mary'},
{name: 'Shelley'},
{name: 'Igor'}
];
filteredOptions: Observable<User[]>;

ngOnInit() {
this.filteredOptions = this.myControl.valueChanges
.pipe(
startWith(''),
map(value => typeof value === 'string' ? value : value.name),
map(name => name ? this._filter(name) : this.options.slice())
);
}

displayFn(user?: User): string | undefined {
return user ? user.name : undefined;
}

private _filter(name: string): User[] {
const filterValue = name.toLowerCase();

return this.options.filter(option => option.name.toLowerCase().indexOf(filterValue) === 0);
}
}

关于javascript - 使用 Angular 的 matAutocomplete,如何显示对象的属性,但在别处引用对象本身?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59219587/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com