matrix-js-sdk 获取来自房间的所有消息
如何从矩阵中的房间获取所有消息?
我正在关注 https://matrix.org/docs/guides/usage- of-the-matrix-js-sdk
我已启动并同步客户端。
访问 room.timeline 仅提供最新消息。我想从聊天一开始就得到所有的信息。
感谢您的帮助。
How do you get all the messages from a room in matrix?
I am following
https://matrix.org/docs/guides/usage-of-the-matrix-js-sdk
I have the client started and synchronized.
Accessing room.timeline only gives the most recent messages. I want to get all of from the beginning of the chat.
Thanks for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 SDK 中的
roomInitialSync
函数并访问messages
属性来获取整个时间线的消息,然后您可以通过监听来监听新消息。 Room.timeline
事件如您提供的文档中所述。You can use the
roomInitialSync
function from the SDK and access themessages
attribute to get the entire timeline of messages, then you can listen for new ones by listening to theRoom.timeline
event as described on the documentation you have provided.