有时我想从服务器向Meteor中的所有客户端发送简单的事件,而不必处理集合 - 我觉得必须有一些简单的方法来做到这一点,但我还没有设法找到它。
我想要类似的东西:
服务器
connection.send("messageForAllUsers", {text: "Hello"});
客户端
connection.subscribe("messageForAllUsers", function(result){
alert(result.text);
})
答案 0 :(得分:2)
有一个流星流包可能是你需要的。 http://arunoda.github.io/meteor-streams/communication-patterns.html#streaming_private_page
答案 1 :(得分:1)
看看这个:http://meteorcapture.com/publishing-anything/
我认为在一天结束时,收集是Meteor最简单,最直接的方式。