我將開始添加代碼,得到的結果以及最終我想要獲得的結果,以及是否有可能。Angular2過濾器對象陣列
其中我得到的結果是數組[對象,對象,...],其中對象是陣列
export class SomeService {
....
....
public someFunction(): MyObject[]{
Observable
.forkJoin(this.userItemsA(userId), this.userItemsB(userId), etc)
.filter(each => {
for (let array of each) {
let x: any = <any> array;
return x.length > 0;
}
})
.map(result => {
return result;
})
.subscribe(result => {
/// what i would like to do for example assuming only 1st array has items
/// do something here with result[0]
/// return MyObject[] from result[0]
});
....
}
}
濾波器結構
I」 m在angular2和反應式編程的早期學習階段,我想要過濾以便映射結果將只有至少有一個項目的數組。
謝謝
你在'.filter(each => ...'中的數據結構如何? – martin
我已經上傳了過濾器的結構,thx – Remus