關於Rxjs情境問題

情境是我有一個Type陣列 [1, 2, 10, 13]

跟AList資料關聯後
例如: [{ type:1, list:[…] },
{ type:2, list:[…] },
{ type:10, list:[…]},
{ type:13, list:[…] }]

之後條件Type為2跟10 List又要關聯BList 取的BList資料

變成: [{ type:1, list:[…] },
{ type:2, list:[list關聯BList的資料] },
{ type:10, list:[list關聯BList的資料]},
{ type:13, list:[…] }]

再關聯BList卡關,想請問該怎麼解決,或者有比較好的解法

//這邊是我的程式碼

這跟 RxJS 沒有太大的關係,而是 JavaScript 對於 Array/Object 的操作

2個讚