是否可以在特定时间向所有活动连接广播消息。让我们在2015年9月9日17:00:00向所有活跃用户发送广播消息
我可以将日期转换为UNIX时间戳,并使用settimeout函数。有没有其他办法可以这样做。
setTimeout(function(){
io.emit('this', 'Broadcast message'); //broadcast message- will be sent to all active session
},60000000);
有没有其他方法可以做同样的事情?