我在Node JS中使用library net来创建套接字服务器
所有事情都很好,也很好。
但有时会出错
错误是: events.js:163 扔掉//未处理的'错误'事件 ^
错误:读取ECONNRESET at exports._errnoException(util.js:1050:11) 在TCP.onread(net.js:581:26)
答案 0 :(得分:1)
连接失效时触发此事件。 你处理过服务器端关闭事件了吗?像这样
socket.on("close",function(){
//you can't handle the network operation anymore after this by the socket object
})
套接字项目中必须进行心跳测量。