RtcRoomContext.exitRoom

解释:离开房间。
Web 态说明:受浏览器兼容性限制,Web 态不支持 RtcRoomContext 相关功能,调用该方法会执行失败回调函数。

方法参数

Object object

object 参数说明

属性名类型默认值必填说明

success

Function

接口调用成功的回调函数

fail

Function

接口调用失败的回调函数

complete

Function

接口调用结束的回调函数(调用成功、失败都会执行)

示例

跳转编辑工具

在开发者工具中打开

在 WEB IDE 中打开

扫码体验

代码示例

百度智能小程序

请使用百度APP扫码

图片示例

RtcRoomContext.exitRoom - 图2

代码示例

  • SWAN
  • JS
  1. <view class="wrap">
  2. <rtc-room id="myRoom">
  3. <rtc-room-item
  4. type="local"
  5. userId="{{localUserId}}"
  6. class="local-view">
  7. </rtc-room-item>
  8. <rtc-room-item
  9. type="remote"
  10. userId="{{remoteUserId}}"
  11. class="remote-view">
  12. </rtc-room-item>
  13. </rtc-room>
  14. <button bindtap="exitRoom">离开房间</button>
  15. </view>