使用与会者标签检查会议中是否有与会者

问题描述

我尝试过

participant = conferences[0].participants('participant')

但这总是返回一个参与者,即使该参与者不在会议中。

participant = conferences[0].participants('participant').fetch()

如果与会者不在会议中,则会返回错误

解决方法

尝试以下操作:

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))