只有在群组中的每个人都阅读后,有没有一种方法可以让消息在 quickblox 群聊中具有已读状态
Is there a way for message to have read status in quickblox group chat only after everyone in group have read it
我和我的团队正在开发 React 应用程序,并使用 QuickBlox 进行聊天。
我们有一对一聊天和群聊功能。我在文档中进行了非常仔细的搜索,但无法找到问题的答案:'Is there a way for message to have read status in quickblox group chat only after everyone in group have read it'?
为了仅在组对话的所有成员都阅读了消息后才将消息标记为 'read',您可以使用 read_ids
响应字段来检索消息 API调用,如QuickBlox documentation.
这一段所示
此字段包含已阅读消息的用户 ID,例如:"read_ids": [2792283,4374458]
。这样,您可以将此数组与所有占用者的数组进行比较,如果它们的长度相同,则在您的 UI.
上显示为 'read'
我和我的团队正在开发 React 应用程序,并使用 QuickBlox 进行聊天。 我们有一对一聊天和群聊功能。我在文档中进行了非常仔细的搜索,但无法找到问题的答案:'Is there a way for message to have read status in quickblox group chat only after everyone in group have read it'?
为了仅在组对话的所有成员都阅读了消息后才将消息标记为 'read',您可以使用 read_ids
响应字段来检索消息 API调用,如QuickBlox documentation.
此字段包含已阅读消息的用户 ID,例如:"read_ids": [2792283,4374458]
。这样,您可以将此数组与所有占用者的数组进行比较,如果它们的长度相同,则在您的 UI.