2

我试图弄清楚如何从对象列表开始获取分组和聚合的值数组(我可以与 ngFor 一起使用),而对于我的生活,我无法让它工作。数据(这是我状态的一部分)看起来像这样:

[{name: "A", value: 1, desc: 'something irrelevant'}, 
 {name: "A", value: 3, desc: 'also other properties'}, 
 {name: "B", value: 2, desc: 'etc.'}, 
 {name: "B", value: 5, desc: 'etc.'}]

我想要得到的结果是这样的(注意类型不同):

[{name: "A", value: 4}, {name: "B", value: 7}]

所以,基本上我想为具有该名称的所有对象找到不同的“名称”和“值”的总和,并具有可供 ngFor | 使用的输出。异步的。

目前,我获得不同价值的几乎可行的解决方案是:

       this.aggregates:Observable<any[]> = this.store
        .select(state => state.valuesList)
        .map(valuesList => valuesList.sort((a,b) => {return (a.name > b.name) ? 1 : ((b.name > a.name) ? -1 : 0);} }))
        .flatMap(valuesList => valuesList)
        .map(value => value.name)
        .distinct();

我很乐意从这个开始;问题是,如果我不添加 toArray(),Typescript 会抱怨“Type string is not assignable to type any[]”;如果我在 distinct() 之后添加 toArray(),它不会再抱怨,但 subscribe() 不会产生任何结果。

我究竟做错了什么?我应该把所有东西都移到reducer(但是我不知道我是否可以改变同一个reducer中不同动作返回的对象类型)?非常感谢任何帮助。

更新:我会更高兴有一个工作 groupBy() 实现,因为它应该正是它的用例。

4

2 回答 2

3

您可以使用groupBy来做您想做的事,但您必须在groupBy从列表派生的可观察对象上使用运算符 - 正如groupBy预期的可观察项目一样。

在以下代码段中,slice相当于this.store.select(state => state.valuesList)

const slice = Rx.Observable.of([
  { name: "A", value: 1, desc: "something irrelevant" },
  { name: "A", value: 3, desc: "also other properties" },
  { name: "B", value: 2, desc: "etc." },
  { name: "B", value: 5, desc: "etc." }
]);

const grouped = slice.concatMap(list => Rx.Observable
  .from(list)
  .groupBy(item => item.name)
  .mergeMap(group => group
    .reduce((total, item) => total + item.value, 0)
    .map(total => ({ name: group.key, value: total }))
  )
  .toArray()
);

grouped.subscribe(value => console.log(value));
.as-console-wrapper { max-height: 100% !important; top: 0; }
<script src="https://unpkg.com/rxjs@5/bundles/Rx.min.js"></script>

于 2017-05-21T06:00:26.540 回答
1

像这样的东西:

import { Observable } from 'rxjs/Observable';
import 'rxjs/add/observable/from';
import 'rxjs/add/operator/map';

function main() {
    const t = [
        { name: "C", value: 3, desc: 'also other properties' },
        { name: "A", value: 1, desc: 'something irrelevant' },
        { name: "B", value: 2, desc: 'etc.' },
        { name: "A", value: 3, desc: 'also other properties' },
        { name: "B", value: 5, desc: 'etc.' }
    ];

    const store = Observable.from(Array(100).fill(t));

    const aggregates: Observable<any[]> = store
    .map((valuesList) => valuesList
        .map((x) => ({ name: x.name, value: x.value }))
        .sort((a, b) => a.name.localeCompare(b.name))
        .reduce((pre, cur) => {
            const len = pre.length - 1;

            if (pre[len] && pre[len].name === cur.name) {
                pre[len].value += cur.value;
                return pre;
            }
            pre[len + 1] = cur;
            return pre;
        }, [])
    );

    return aggregates;
}

main().subscribe((x) => {
    console.dir(x, { depth: null });
});

输出是:

[ { name: 'A', value: 4 },
  { name: 'B', value: 7 },
  { name: 'C', value: 3 } ]
[ { name: 'A', value: 4 },
  { name: 'B', value: 7 },
  { name: 'C', value: 3 } ]
[ { name: 'A', value: 4 },....
于 2017-05-20T19:11:36.117 回答