[ngFor] 針對物件裡面的自定義 index 排序

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

謝謝

看起來是需要先做 groupBy 後再跑 ngFor
不整理資料 + 一個 ngFor 應該是做不到的

謝謝你…覺得這問題問得好差XD

有任何問題都可以提出來問,No worries.