订阅Meteor中从服务器发送的简单事件

时间:2015-02-26 10:14:18

标签: meteor

有时我想从服务器向Meteor中的所有客户端发送简单的事件,而不必处理集合 - 我觉得必须有一些简单的方法来做到这一点,但我还没有设法找到它。

我想要类似的东西:

服务器

connection.send("messageForAllUsers", {text: "Hello"});

客户端

connection.subscribe("messageForAllUsers", function(result){
    alert(result.text);
})

2 个答案:

答案 0 :(得分:2)

答案 1 :(得分:1)

看看这个:http://meteorcapture.com/publishing-anything/

我认为在一天结束时,收集是Meteor最简单,最直接的方式。