Socket.io处理中间件错误

时间:2015-09-25 14:25:38

标签: node.js socket.io

我有以下代码:

io.use(function (socket, next) {
    if (socket.auth) // user has already authed
        next(); // success
    next(new Error('not authorized'));
});

错误最终在哪里?

1 个答案:

答案 0 :(得分:1)

它最终成为客户端的HTTP错误代码响应。