我有这样的场景:
peerjs服务器是否有办法做到这一点?
答案 0 :(得分:1)
TL; DR 您无法通过他们的API。
但是,你可以做一些工作!通过阅读他们的来源,我能够创建一个" mock"他们的脱节。然而,这并没有提供理由。它仍然适合我的需要!
console.log('disconnect peer', id);
this._clients['peerjs'][id].socket.close();
this._ips[this._clients['peerjs'][id].ip]--;
delete this._clients['peerjs'][id];
this.emit('disconnect', id);