gpt4 book ai didi

javascript - RxJS - 从可观察对象中取出 n 个最后元素

转载 作者:可可西里 更新时间:2023-11-01 02:31:21 25 4
gpt4 key购买 nike

我想从 observable 中获取最后 3 个元素。假设我的时间线是这样的:

--a---b-c---d---e---f-g-h-i------j->

其中:a、b、c、d、e、f、g、h、i、j 是发射值

每当发出新值时,我都想立即获取它,因此它看起来像这样:

[a]
[a, b]
[a, b, c]
[b, c, d]
[c, d, e]
[d, e, f]
[e, f, g]
[f, g, h]
... and so on

我认为这非常有用。想象一下建立一个聊天室,您希望在其中显示 10 条最新消息。每当收到新消息时,您都想更新您的观点。

我的尝试:demo

最佳答案

您可以为此使用扫描:

from(['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u'])
.pipe(
scan((acc, val) => {
acc.push(val);
return acc.slice(-3);
}, []),
)
.subscribe(console.log);

这将打印:

[ 'a' ]
[ 'a', 'b' ]
[ 'a', 'b', 'c' ]
[ 'b', 'c', 'd' ]
[ 'c', 'd', 'e' ]
...
[ 's', 't', 'u' ]

bufferCount 不会执行您想要的操作。它只会在每个缓冲区恰好为 === 3 时发出,这意味着在您发布至少 3 条消息之前不会发出任何信号。

2019 年 1 月:针对 RxJS 6 进行了更新

关于javascript - RxJS - 从可观察对象中取出 n 个最后元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47911178/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com