📜  使用异步等待在 socket.io 上发出事件 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:08.145000             🧑  作者: Mango

代码示例1
async function doesSocketAgree(){
  await new Promise(resolve => {
    socket.emit('doesOtherSocketAgree', otherSocketId, (answer) => {
      resolve(answer);
    });      
  });
}