我在Angular 5中使用p-dataView并出现错误
无法读取DataView.filter中未定义的属性“ split”
我阅读了文档,找不到任何解决我的问题的方法。打字稿方面也不需要代码... 所以我只有这个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>
答案 0 :(得分:0)
如果使用过滤器。我认为您也应该使用filterBy属性。
<p-dataView #dv [value]="cars" filterBy="brand">
根据文档,通过定义filterBy属性并调用组件的filter函数来实现过滤。
因此,我怀疑您会收到错误'split' of undefined at DataView.filter
。