8

为什么 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);
    });
}
4

1 回答 1

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

于 2013-04-23T03:55:44.080 回答