调用方式:
chatroom.chatroom.getInfo(options)
获取本聊天室的信息
const chatroomInfo = await chatroom.chatroom.getInfo()
更新聊天室信息
chatroom.chatroom.updateInfo({ chatroom: { "announcement": "announcement" }, needNotify: true})// 接收方chatroom.on('chatroomMsg', (msg) => { console.log(msg.attach.type === 'updateChatroom')})
调用方式: