使用参与者标签检查会议中是否存在参与者
Check if a participant exists in a conference using participant label
我试过了
participant = conferences[0].participants('participant')
但这总是 return 参与者,即使参与者不在会议中。
participant = conferences[0].participants('participant').fetch()
return如果与会者不在会议中则出错
试试下面的方法:
function findParticipant() {
return client.conferences('CFba9989...')
.participants
.list()
}
let findMe = 'Winston';
findParticipant()
.then(participants => {
let result = participants.filter(participant => participant.label === findMe )
console.log(result);
}).catch(err => console.log(err.message))
我试过了
participant = conferences[0].participants('participant')
但这总是 return 参与者,即使参与者不在会议中。
participant = conferences[0].participants('participant').fetch()
return如果与会者不在会议中则出错
试试下面的方法:
function findParticipant() {
return client.conferences('CFba9989...')
.participants
.list()
}
let findMe = 'Winston';
findParticipant()
.then(participants => {
let result = participants.filter(participant => participant.label === findMe )
console.log(result);
}).catch(err => console.log(err.message))