更新时间:2025-01-09 GMT+08:00
场景8:添加与会者
描述
在会议中,可以调用添加与会者的接口把用户加入到会议中。
业务流程
使用SDK添加与会者时,先调用addAttendee接口,然后处理返回结果。
- 接口调用
- 组装数据结构Array<HWMOpenAttendeeBaseInfoModel>。
- 调用addAttendee接口,第1步中的数据作为参数。
- 处理返回结果
处理Promise<HWMCommonResult>。
示例代码
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
/** * 添加与会者 */ handleAddAttendee() { const attendees: Array<HWMOpenAttendeeBaseInfoModel> = [{ number: this.getNumber(), name: this.getName(), accountId: this.getAccountId(), isSelf: this.isSelf, thirdAccount: this.getThirdAccount(), userUuid: this.getUserUuid() }]; UISDK.getConfCtrlApi().addAttendee(attendees).then((res: HWMCommonResult) => { const message: string = res.result === SDKERR.HWM_SDKERR_SUCCESS ? '添加与会者成功' : '添加与会者失败' + res.result; console.log(message); }) } |
父主题: 典型场景