【发布时间】:2021-07-27 14:37:20
【问题描述】:
我有一个简单的多选下拉菜单,我想为选择区域和下拉选项应用小写管道。我尝试使用以下示例执行此操作 - 但它不起作用 - 只有下拉选项“接收”管道转换
<p-multiSelect [options]="cities" [(ngModel)]="selectedCities1" defaultLabel="Select a City" optionLabel="name">
<ng-template let-country pTemplate="item">
<div class="country-item">
<div>{{country.name | lowercase}}</div> // not working
</div>
</ng-template>
<ng-template let-item pTemplate="country">
<div>{{item.name | lowercase}}</div> // working
</ng-template>
可能和 optionLabel="name" 属性有关?
【问题讨论】: