p-table上的dataKey属性是否需要定义为列,还是只需要是[value]数组中对象的属性?如果它需要是一列,该列是否需要可见?
答案 0 :(得分:0)
不,dataKey不需要是列。
dataKey应该是记录的属性,但不需要显示它以供表格使用。
<强> HTML:强>
<p-table [columns]="cols" [value]="cars" [(selection)]="selectedCars" dataKey="vin">
<ng-template pTemplate="header" let-columns>
<th *ngFor="let col of columns">
{{col.header}}
</th>
</ng-template>
<ng-template pTemplate="body" let-car>
<tr>
<td>{{car.year}}</td>
</tr>
</ng-template>
</p-table>
<强>打字稿:强>
export class TableDemo implements OnInit {
cars: Car[];
cols: any[];
constructor() { }
ngOnInit() {
this.cars = [
{ vin: '123ABC', year: 1994 },
{ vin: '234BCD', year: 1978 },
{ vin: '345CDE', year: 2015 },
];
this.cols = [
{ field: 'year', header: 'Year' }
];
}
}