在更新值时,我无法在p-multiselect(prime-ng组件)中设置NgModel。
答案 0 :(得分:0)
multiselect组件具有输入属性“ defaultLabel”,可用于自定义在选择某些内容之前显示的默认值,默认值为“选择”。
<p-multiselect
[defaultLabel]="yourDefaultValue"
[options]="myOptions"
[(ngModel)]="mySelectedOptions"
></p-multiselect>