p-table 上的 dataKey 属性是否需要定义为列,或者它只是需要成为 [value] 数组中对象的属性?如果它需要是一个列,这个列是否需要可见?
问问题
8128 次
1 回答
3
不,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' }
];
}
}
于 2018-05-18T13:09:58.590 回答