我用的是快速框架。我想从 socket.io 访问会话数据。我尝试使用 client.listener.server.DynamicViewHelpers 数据表达 DynamicHelpers,但是我无法获得会话数据。有什么简单的方法吗?请看密码
app.listen(3000);
var io = require('socket.io');
var io = io.listen(app);
io.on('connection', function(client){
// I want to use session data here
client.on('message', function(message){
// or here
});
client.on('disconnect', function(){
// or here
});
});