socket.open()

  • Returns Socket

手动打开socket

  1. const socket=io({
  2. autoConnect:false
  3. })
  4. // ...
  5. socket.open()

它还可用于手动重新连接:

  1. socket.on('disconnect',()=>{
  2. socket.open()
  3. })