书中提到使用
npm install socket.io
安装 node.js 的 soket.io 模块
默认安装的为最新版本 可以使用 npm list 查看当前装了哪些模块
如果出现
SIOClientImpl::handshakeResponse() called
handshake completed
response code: 400
SIOClientImpl::handshake() failed
error buffer:
HelloWorld::onError received:
那么先卸载 soket.io 模块
npm uninstal socket.io
再安装 0.9.16的版本
npm install [email protected]
再重新启动服务端和客户端
时间: 2024-11-02 04:26:33