我想在我的数据表中使用ap multiSelect过滤器。我使用组件但没有出现在我的页面中。好像什么都没有
<ng-template pTemplate="header" let-columns>
<tr>
<th *ngFor="let col of columns" [pSortableColumn]="col.field">
{{col.header}}
<p-sortIcon [field]="col.field">
</p-sortIcon>
</th>
</tr>
<tr>
<th *ngFor="let col of columns" [ngSwitch]="col.field">
<input *ngSwitchCase="'aa'" pInputText type="text" (input)="dt.filter($event.target.value, col.field, col.filterMatchMode)">
<input *ngSwitchCase="'bb'" pInputText type="text" (input)="dt.filter($event.target.value, col.field, col.filterMatchMode)">
<p-multiSelect *ngSwitchCase="'cc'" [options]="cc_Item" defaultLabel="All Status" (onChange)="dt.filter($event.value, col.field, 'in')"></p-multiSelect>
</th>
</tr>
</ng-template>
在我的ts中,我声明了我的项目this.cc_Item = [{label: 'my data colomn', value: 'my data column'} ... ]
和import { SelectItem } from 'primeng/api';
您是否了解我的问题?