我想与 Geddy 一起使用 socket.io。我只是按照以下链接中的说明进行操作:
https://github.com/mde/geddy/wiki/Getting-started-with-Geddy,-Socket.io,-and-Authentication
建议我如何在服务器端捕获特定模型的“连接”事件。
还可以在下面看到我到目前为止对这个模型所做的事情......
geddy scaffold -rt LiveUpdate stat:string category:string
并在“show.html.ejs”的“show.html.ejs”中找到了以下与socket.io相关的自动生成脚本
geddy.io.addListenersForModels(['LiveUpdate']);
geddy.model.LiveUpdate.on('update', function (chat) {
....
我真正需要的是知道如何从服务器端捕获或发出这个模型的事件。