带有对象代码和描述的角度材质自动完成

时间:2021-03-24 19:25:18

标签: angular typescript angular-material angular10

我正在尝试将 Angular Material Autocomplete 与类一起使用。我在滚动下拉列表中显示了描述,并希望在 formValue 中获取的实际值是代码。

由于某种原因一切正常,自动完成将在滚动中显示所有描述,但是当我实际选择一个描述值时,一个代码在文本框中呈现。它应该仍然显示描述,但将代码值存储在表单中。这在使用 mat-select 下拉菜单时工作正常,但转移到自动完成会导致一些问题。

有人熟悉如何解决这个问题吗?

enter image description here

打字稿:

 readonly dataSource = DataSource;
 dataSourceFilteredOptions: Observable<Array<BaseParentLookupVm>>;

  private _filterDataSource(value: string): Array<BaseParentLookupVm> {
    const filterValue = value?.toLowerCase() ?? '';
    let data = this.dataSource.filter(option => option.description.toLowerCase().includes(filterValue));
    return data;
  }

  createDataSourceFilteredOptions() {
    this.dataSourceFilteredOptions = this.processBatchForm.get('dataSourceField').valueChanges
      .pipe(
        startWith(''),
        map(value => this._filterDataSource(value))
      );
  } 

 public initializeNewBatchForm(): void {
   this.processBatchForm = this.formBuilder.group({
    'dataSourceField': [null, [Validators.required]],
  });
 }

HTML:

  <mat-form-field>
    <mat-label>Data Source</mat-label>
    <input 
      type="text"
      placeholder="Select"
      matInput
      formControlName="'dataSourceField'"
      [matAutocomplete]="templateDataSource">  
      <mat-autocomplete 
        #templateDataSource="matAutocomplete"
      >
      <mat-option>Select</mat-option>
      <mat-option 
        *ngFor="let dataSourceItem of dataSourceFilteredOptions | async" 
        [value]="dataSourceItem.code"
      >
        {{dataSourceItem.description}}
      </mat-option>
    </mat-autocomplete>
  </mat-form-field>

补充代码:

export interface BaseParentLookupVm {
  displayOrderId?: number;
  code: string;
  description: string;
}

export const DataSource: Array<BaseParentLookupVm> = [
  { 
    displayCode: '1', 
    code: '1111', 
    description: '1111 Description'
  },
  { 
    displayCode: '2', 
    code: '2222', 
    description: '2222 Description' 
  },
  { 
    displayCode: '3', 
    description: '3333 Description' 
  },
  { 
    displayCode: '4', 
    description: '4444 Description'
  }
];

资源:

这个答案做了从值到描述的直接映射,所以他们的工作。 Angular Autocomplete Object

尝试使用文本框更新 [DisplayWith],Angular mat-autocomplete : How to display the option name and not the value in the input

这个答案没有显示如何使用文本框,给出另一个问题 How to display using [displayWith] in AutoComplete Material2

1 个答案:

答案 0 :(得分:1)

要使用 displayWith,您必须将代码更改为:

<mat-form-field>
<mat-label>Data Source</mat-label>
<input 
  type="text"
  placeholder="Select"
  matInput
  formControlName="'dataSourceField'"
  [matAutocomplete]="templateDataSource">  
  <mat-autocomplete #templateDataSource="matAutocomplete" [displayWith]="displayFn">
  <mat-option>Select</mat-option>
  <mat-option 
    *ngFor="let dataSourceItem of dataSourceFilteredOptions | async" 
    [value]="dataSourceItem">
    {{dataSourceItem.description}}
  </mat-option>
</mat-autocomplete>

TS

myControl = new FormControl();
options = [{
    displayOrderId: 1,
    code: "1111",
    description: "1111 Description"
  },
  {
    displayOrderId: 2,
    code: "2222",
    description: "2222 Description"
  },
  {
    displayOrderId: 3,
    code: "3333",
    description: "3333 Description"
  },
  {
    displayOrderId: 4,
    code: "4444",
    description: "4444 Description"
  }
];
filteredOptions: Observable < any > ;

ngOnInit() {
  this.filteredOptions = this.myControl.valueChanges.pipe(
    startWith(""),
    map(value => this._filter(value))
  );
}

private _filter(value: any) {
  let filterValue = '';
  if (typeof value === "string") {
    filterValue = value.toLowerCase();
  } else {
    filterValue = value.description.toLowerCase();
  }

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

displayFn(value: any) {
  return value ? value.description : undefined;
}