作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有 API 返回的结构
这是签名
methodApi(): Observable(Array<MyClass>)
这是数据
{ id: 1, name: 'Red', parentId: null }
{ id: 2, name: 'Apple', parentId: 1 }
others
我想按parentId分组
methodApi()
.pipe(groupby((x: MyClass[] => ...))) // THERE
.subscribe(x => console.log(x));
MethodApi 返回 Observable
如何解决这个分组?我将 Angular 9.0 与 RxJS 6.5.5 结合使用
最佳答案
您必须使用 from
从数组中创建另一个可观察流,然后使用 groupBy
并将其转换回结果数组:
methodApi().pipe(
concatMap((result) => from(result)),
groupBy((item) => item.parentId),
mergeMap(group => group.pipe(toArray()))
).subscribe(x => console.log(x));
你也可以使用mergeAll
:
methodApi().pipe(
mergeAll(),
groupBy((item) => item.parentId),
mergeMap(group => group.pipe(toArray()))
).subscribe(x => console.log(x));
关于angular - 如何在 RxJS 的 GroupBy 中使用分组键,,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62871950/
我是一名优秀的程序员,十分优秀!