PrimeNG dataView 搜索框设置问题

PrimeNG dataView Search Box Setup Issue

我正在使用带 Angular 5 的 p-dataView 并出现错误

Cannot read property 'split' of undefined at DataView.filter

我阅读了文档,但找不到任何可以解决我的问题的方法。打字稿方面也不需要代码...... 所以我只有这个 html 代码 请注意,搜索应指向复选框 (app_name)

  <p-dataView [value]="iApps" #dv [paginator]="true" [rows]="20"  paginatorPosition="both">
<p-header> 
      <input type="search" pInputText placeholder="Search" (keyup)="dv.filter($event.target.value)">
</p-header>

                  <ng-template let-apps let-rowIndexValue="rowIndex" pTemplate="listItem">

                           <input type="checkbox" (click)="toggleSelectedApp($event,rowIndexValue)" id="defaultAppID" name="defaultApps" style="margin-right:5px;margin-bottom:5px;margin-left:5px; margin-top:5px" [value]='apps.app_id'> {{apps.app_name}}

                                                    <select name="role" class="dropdown"  style="width:85%" (ngModelChange)="selectedDefaultAppRole($event,rowIndexValue)" [(ngModel)]="apps.seletedAppRoleID">
                                                        <option class="dropdown-item" value="-1" selected>Select</option>
                                                        <option class="dropdown-item" *ngFor='let role of apps.roles' [ngValue]="role.app_role_id">
                                                            {{role.app_role_name}}
                                                        </option>
                                                    </select>

                                    </ng-template>

                                </p-dataView>

如果您正在使用过滤器。我认为您也应该使用 filterBy 属性。

<p-dataView #dv [value]="cars" filterBy="brand">

根据文档,过滤是通过定义 filterBy 属性 并调用组件的过滤函数来实现的。 我怀疑因此你收到错误 'split' of undefined at DataView.filter.