我有一张简单的素描表
<p-table [value]="users"
[paginator]="true"
[rows]="5">
<ng-template pTemplate="header">
<tr>
<th>name</th>
</tr>
</ng-template>
<ng-template pTemplate="body" let-user>
<tr>
<td>{{user}}</td>
</tr>
</ng-template>
</p-table>
表中有5个以上的用户
users: string[] = ['Mike', 'David', 'John', 'Ronald', 'Mark', 'Polina', 'Anna', 'Olivia', 'Amelia'];
this.users
this.users = ['Gregor', 'Ronald'];
但表中仍然选择了第二个页面,所以表中并没有用户。现场观看
DEMO