2

如何获取所选下拉值的文本名称。

使用 Prime ng 下拉菜单

HTML

   <p-dropdown [options]="regionSelectList" [(ngModel)]="reg" [filter]="true" [ngModelOptions]="{standalone: true}">  </p-dropdown>
    <button class="btn btn-primary" (click)="addRecipient(reg);">Add</button>

TS

addRecipient(reg: any){
    console.log(reg) //which return code not text.
}

如何使用代码获取文本或标签?

4

1 回答 1

1

你如何填充regionSelectList

如果看起来像

this.regionSelectList = [{label:'Region A', value:'regionA'}, {label:'Region B', value:'regionB'}];

应该没问题:您将在您的方法中获得该value属性。addRecipient

见工作Plunker

于 2018-02-20T10:04:15.937 回答