p-table paginatorLeft & paginatorRight 不出现

p-table paginatorLeft & paginatorRight do not show up

我有一个 p-table 显示底部的分页器控件很好。但是,当我尝试添加 paginatorLeft 或 paginatorRight 标签时,它们都不会显示:

<ng-template pTemplate="paginatorLeft" let-state>
  {{state.totalRecords}}
  <button type="button" pButton icon="fa-refresh"></button>
</ng-template>
<ng-template pTemplate="paginatorRight">
  <button type="button" pButton icon="fa-cloud-upload"></button>
</ng-template>

这是项目的 stackbliz link - https://stackblitz.com/edit/angular-x87wzc?file=app%2Fprovider-search%2Fprovider-search.component.html

我做错了什么?

PrimeNG 文档中存在错误。它应该是 paginatorleft 而不是 paginatorLeft。参见 table code,第 370 行)

所以用 pTemplate="paginatorleft" 替换 pTemplate="paginatorLeft" 应该可以。