wildfirechat/vue-chat

web的IM API 在哪里查看

Closed this issue · 5 comments

比如发送消息,创建群聊 等等web IM的API详细的 清单接口功能

请查看 wfc.js文件

请查看 wfc.js文件

有提供相应的文档吗

野火有提供会话列表的筛选吗
image

这个,你可以在 UI 层自己分类一下

或者,可以通过会话类型,或者会话线路区分的你们的不同会话,然后通过下面这个 api

     * 获取会话列表
     * @param {[number]} types 想获取的会话类型,可选值参考{@link ConversationType}
     * @param {[0]} lines 想获取哪些会话线路的会话,默认传[0]即可
     * @returns {[ConversationInfo]}
     */
    getConversationList(types, lines) {
        return impl.getConversationList(types, lines);
    }