ngFor 有辦法做到依照 rowIndex 和 colIndex 的順序來印出 output 嘛?
還是只能先組成適合的格式直接跑?
以下是接到的格式:
export interface FieldConfig {
text: string;
rowIndex: number;
colIndex: number;
}
configData: GridConfig[] = [
{
text: ‘A1’;
rowIndex: 1;
colIndex: 1;
},
{
text: ‘A2’;
rowIndex: 1;
colIndex: 2;
},
{
text: ‘B1’;
rowIndex: 2;
colIndex: 1;
}
]
想要用 ngFor 印出
A1 A2
B1
謝謝