Meteors集合游标forEach无法正常工作

时间:2013-04-23 01:45:49

标签: collections foreach cursor meteor

为什么Meteor集合游标foreach循环在以下代码中不起作用。如果我将循环包装在Template.messages.rendered或Deps.autorun函数中,它就可以工作。我不明白为什么。

Messages = new Meteor.Collection("messages");

processed_data = [];

if(Meteor.isClient) {

    data = Messages.find({}, { sort: { time: 1 }});
    data.forEach(function(row) {
        console.log(row.name)
        processed_data.push(row.name);
    });
}

1 个答案:

答案 0 :(得分:11)

代码运行时,消息收集尚未就绪。

尝试这样的事情:

Messages = new Meteor.Collection("messages");

if(Meteor.isClient) {
    processed_data = []; 

    Deps.autorun(function (c) {
        console.log('run');
        var cursor = Messages.find({}, { sort: { time: 1 }});
        if (!cursor.count()) return;

        cursor.forEach(function (row) {
            console.log(row.name);
            processed_data.push(row.name);
        }); 

        c.stop();
    }); 
}

其他解决方案:

只需玩订阅!您可以将onReady回调传递给订阅 http://docs.meteor.com/#meteor_subscribe