4

我在我的角度应用程序中有一组带有值的下拉菜单。

在视图 Screen 中,下拉菜单不显示所选值(保存在 db 中的值),而是显示“选择”。

HTML:

<p-dropdown    [options]="reasons" [(ngModel)]="selectedReason"   (onChange)="getCompleteReason($event)" styleClass="ui-column-filter" filter="true"> </p-dropdown>

组件.ts

this.reasons = [];
    this.reasons.push({label: 'Select', value: null});
    this.reasons.push({label: 'Reason 1', value: 'Reason 1'});
    this.reasons.push({label: 'Reason 2', value: 'Reason 2'});
    this.reasons.push({label: 'Reason 3', value: 'Reason 3'});
    this.reasons.push({label: 'Other', value: 'Other'});


this.selectedReason = 'Reason 2' (eg value stored in the db)

在此处输入图像描述

4

3 回答 3

4

在我将名称属性添加到下拉列表后它起作用了

<p-dropdown   [options]="reasons" [(ngModel)]="selectedReason"  name="selectedReason"   (onChange)="getCompleteReason($event)" styleClass="ui-column-filter" filter="true">
于 2018-06-25T20:13:19.923 回答
1

你也可以试试这个。假设您的下拉列表如下所示:

 <p-dropdown
  class="iteration-dropdown"
  [options]="cities"
  [(ngModel)]="selectedCity"
  name="selectedCity"
  (onChange)="loadIterationFeatures()"
 ></p-dropdown>

在 ngOnInit 上,执行以下操作:

 this.selectedCity = this.select;
 this.cities = [{label: this.select, value: this.id}]
于 2021-08-17T04:09:10.190 回答
0

要预先选择您的primeng下拉值,您可以使用 patchValue() 更新您的 formGroup 值,如下所示:

public parentForm: FormGroup
this.parentForm = this.formBuilder.group({
      group: [null, [Validators.required]],
      id_module:  [null]
    })

const newObj = {group: 'Test', id_module: 32}
this.parentForm.patchValue(newObj )
于 2019-04-26T19:04:12.713 回答