如何获取所选下拉值的文本名称。
使用 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.
}
如何使用代码获取文本或标签?