mobile CCTV,mobile surveillance,police body worn cameras

标题: 获取群组通话的会议列表 [打印本页]

author: hw123    time: 2021-8-24 09:33
标题: 获取群组通话的会议列表
1.对于API中,提到的获取会议列表的方法swGetConfList(),跟创建时获取会议列表方法var json = session.swGetConfManager().swGetConfList()中的swGetConfList是同一个吗?具体用法上有什么区别?
http://61.191.27.18:8081/doc/class/jSW.SwConfManager.html
https://61.191.27.18:9443/Demo/conference.html
[attach]3119[/attach] [attach]3120[/attach]

2.麻烦看下我这写法是哪里不对吗?还是没有总会议列表数据
var confManager = session.swGetConfManager();
console.log('confManager:',confManager);
               
var json = session.swGetConfManager().swGetConfList();
console.log('json:', json);
[attach]3122[/attach]

author: IBeli    time: 2021-8-24 09:40
你好
是同一个
var confManager = session.swGetConfManager()
需要先初始化confManager.swInit,并等待回调过来通知初始化成功,才能调用swGetConfList()
没有初始化,会调用失败
author: hw123    time: 2021-8-24 10:11
IBeli post on2021-8-24 09:40
你好
是同一个
var confManager = session.swGetConfManager()

麻烦看下我这写法是哪里不对吗?还是没有总会议列表数据
var confManager = session.swGetConfManager();
console.log('confManager:',confManager);
               
var json = session.swGetConfManager().swGetConfList();
console.log('json:', json);

author: IBeli    time: 2021-8-24 10:31
hw123 post on2021-8-24 10:11
麻烦看下我这写法是哪里不对吗?还是没有总会议列表数据
var confManager = session.swGetConfManager() ...
参考下,下面的代码
  1. var confManager = session.swGetConfManager()
  2. console.log("call conf manager init")
  3. confManager.swInit({callback: (rc) => {
  4.     if(rc == 0){
  5.     console.log("conf manager dispatch init success")
  6.     console.log("call get conf list")
  7.     var json = session.swGetConfManager().swGetConfList();
  8.     console.log('json:', json);
  9. }
  10. }})
copycode


author: hw123    time: 2021-8-24 10:39
IBeli post on2021-8-24 10:31
参考下,下面的代码

已经获取到了 谢谢




欢迎光临 mobile CCTV,mobile surveillance,police body worn cameras (http://bbs.besovideo.com:8067/) Powered by Discuz! X3.2