如果用户还待在房间中,调用此接口后,会自动退出房间
import { MTXLiveRoom } from "@yl/super-jssdk"
MTXLiveRoom.logout()
| 参数 | 类型 | 作用 |
|---|---|---|
| resolve() | Function | 成功回调 |
| reject(err) | Function | 失败回调,err为详细错误信息,是一个json对象,例如:{"errCode":-1,"errMsg":"出错啦"} |
MTXLiveRoom.logout()
.then(() => {
console.log();
})
.catch(err => {
console.log('插件调用失败:', err)
})