更改 primeng 多选的默认标签

change defult label of prime ng multiselect

我正在使用 prime ng 的多选组件。我正在尝试更改多选下拉列表的标签,但它不起作用。请在下面找到我的代码:

                <p-multiSelect [options]="cities" [defaultLabel]="does not work" styleClass="citiesClass" (onChange)="onChange($event)">
                </p-multiSelect>

如何更改多选组件的默认标签?

谢谢

使用defaultLabel="Your Label"[defaultLabel]="'Your Label'"

这样试试:

<p-multiSelect [options]="cities" defaultLabel="Your Label" styleClass="citiesClass" (onChange)="onChange($event)">
</p-multiSelect>

注意:如果变量中有字符串,

使用:[defaultLabel]="labelVariable"

如果是硬编码字符串,则

使用:defaultLabel="Your Label"