Meteor GroundDB似乎缺乏持久性

时间:2016-06-06 16:32:04

标签: mongodb meteor persistence

我有以下代码。

Meteor.startup(function () {  
    Cells = new Ground.Collection('cells', { connection: null });

    console.log("Number of cells: " + Cells.find().count());

    if (Cells.find().count() == 0) {
        for (i = 0; i < Session.get('cellsLat'); i++) { 
            for (j = 0; j < Session.get('cellsLng'); j++) { 
                Cells.insert({ i: i, j: j, visible: true });
            }
        }
    }
});

每次重启并重新加载(按浏览器中的重新加载按钮)后,Cells.find()。count()等于0.

我在这里错过了一些明显的东西吗?

0 个答案:

没有答案