通常,我可以使用服务器中的GET / POST方法从服务器更改客户端的视图,如下所示:
app.get('/hello', function(req, res){
res.render('helloView', {})
});
helloView
是某些html / jade视图文件。
但是,当我收到客户的res.render('helloView', {})
消息时,我需要能够致电socket.io
。
io.on('connection', function(socket){
socket.on('showHellow', function(client_data){
res.render('helloView', {}) // <---- obviously this fails, so how
//can I call res.render('helloView') from here???
});
});
我怎么能做到这一点?