Stream - 从 'notification' 类型的流中获取活动,无需聚合

Stream - Get activities from a stream of type 'notification' without aggregation

创建 "notification" 类型的流时,它的默认聚合格式为:

{{ verb.id }}_{{ time.strftime('%Y-%m-%d') }}

也许我理解错了,但是当我试图像这样获取最新活动时:

const user = client.feed('notifications', userId);
const activities = await user.get();

不需要任何聚合。我只想显示发生的 X 个最新活动。如何将聚合格式设置为空(根本没有聚合,调用应该只是 return 每个 activity 时的数组顺序)

您可以通过将聚合格式设置为

来禁用聚合

{{ id }}

如果您不需要通知计数,您也可以考虑使用固定 Feed。