您可以将侦听器附加到
uncaughtException流程对象的事件。
来自实际的Node.js API参考的代码(这是“过程”下的第二项):
process.on('uncaughtException', function (err) { console.log('Caught exception: ', err);});setTimeout(function () { console.log('This will still run.');}, 500);// Intentionally cause an exception, but don't catch it.nonexistentFunc();console.log('This will not run.');
您现在要做的就是记录它或对其进行处理,以防万一,您知道在什么情况下会发生错误,您应该在Socket.IO的GitHub页面上提交错误:https :
//github.com/ LearnBoost /
Socket.IO节点/问题
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)