-1

我有一个值,我需要在开始时将它放在下拉列表中:

state is an object {'code':...,'description'}

and listState in array of state 

 loadValue(stateSave: Object) {//state save is the object  just saved
   this.state={'code':stateSave['code'],'description':stateSave['description']   }

在我的 html 中是:

    <p-dropdown [options]="listState" [(ngModel)]="state"  optionLabel="description"></p-dropdown>

我的问题是,如果我刚刚保存了一个旧值并且我想显示它,但下拉菜单不起作用,因为在开始时它不显示任何内容。任何人都可以帮助我吗?

4

1 回答 1

0

在 init() 方法中,编写以下代码,

this.state={'code':stateSave['codice'],'description':stateSave['description']} 

于 2020-06-25T09:02:42.090 回答