标签: node.js socket.io
我有以下代码:
io.use(function (socket, next) { if (socket.auth) // user has already authed next(); // success next(new Error('not authorized')); });
错误最终在哪里?
答案 0 :(得分:1)
它最终成为客户端的HTTP错误代码响应。