我正在使用primeNG v7.0.3 我在multiSelect上遇到问题,即是否可以基于SelectItem接口禁用选项。
this.roleOptions = [
{ label: this.messages['GLOBAL.USER.ROLE.CLINIC_USER'], value: this.roleEnum.CLINICUSER, disabled: true },
{ label: this.messages['GLOBAL.USER.ROLE.AGENT_USER'], value: this.roleEnum.AGENTUSER },
{ label: this.messages['GLOBAL.USER.ROLE.ADMIN_USER'], value: this.roleEnum.ADMINUSER },
{ label: this.messages['GLOBAL.USER.ROLE.CLINIC_REVIEWER'], value: this.roleEnum.CLINICREVIEWER }
];
仍然可以选择禁用的CLINICUSER。为什么在地球上仍然可以选择呢?
roleOptions初始化为roleOptions: SelectItem[]