我有一个简单的多选
<mat-form-field>
<mat-select placeholder="Category 1" [formControl]="Category1" (selectionChange)="PopulateCategoryArray('Category 1', $event.value)" multiple>
<mat-option *ngFor="let subCat1 of SubCategories1; " [value]="subCat1">{{subCat1.Name}}</mat-option>
</mat-select>
</mat-form-field>
我想让用户更新其个人资料,将他们已经选择的类别加载到多选中,然后检查它们以显示他们已经选择了选项,并显示其余选项,以便他们可以如果愿意,请选择更多。
我的变量中包含数据。
感谢您的帮助。