如何在Meteor中需要时加载文档

时间:2014-06-16 18:41:11

标签: javascript meteor

在我的meteor应用程序中,我有几个发布/订阅设置。现在我需要为系统中的所有用户提供另一个用户。现在,只有当用户打开配置覆盖图时,我才不需要这些信息。在特定用户操作上加载数据的首选方法是什么(例如,单击按钮)。

我也想知道分页,如果用户数量巨大,可能是这样吗?

2 个答案:

答案 0 :(得分:2)

您始终可以使用Meteor.call()

http://docs.meteor.com/#meteor_call

您在客户端和服务器上的方法上声明Meteor.call。您可以返回所需的任何数据,

// client
Meteor.call('getData', function(error, data) {
    // do something with data
})

// server
Meteor.methods({
    getData: function() {
        // return some data
    }
});

答案 1 :(得分:1)

对于分页,请查看使用Atmosphere / Meteorite上的Reactive Tables包。