“websocket was interrupted while page is loading” on Firefox for Socket.io

前端 未结 6 1844
不知归路
不知归路 2020-12-07 13:19
Error: The connection to  was interrupted while the page was loading.
Source File: localhost/socket.io/node_modules/socket.io-client/dist/socket.io.         


        
6条回答
  •  青春惊慌失措
    2020-12-07 13:50

    One solution is to put a timeout on the disconnect event.

             setTimeout(() => {
                $('#offlineModal').modal('show')
              }, 5000)
    

提交回复
热议问题