我正在尝试对primeng中的自动增量模板列进行排序,但无需指定[field]
(我不确定应该为rowIndex的情况分配什么字段)
<p-column header="#" [sortable]="true">
<template let-index="rowIndex" pTemplate="body">
<span>{{index+1}}</span>
</template>
</p-column>
这将显示基于列索引的自动增量,但不对列进行排序。