次のように、model.js で Collection を定義しました。
People = new Meteor.Collection("people");
main.js のコードは次のとおりです。
function test2(){
console.log(JSON.stringify(People.find().fetch()));
setTimeout(test2,5000)
}
if (Meteor.isServer) {
if(People.find().fetch().length === 0){
var tom = {name:"Tom",age:18};
People.insert(tom);
}
Meteor.startup(function () {
test2();
});
}
ここに私が得るエラーがあります:
設定した間隔で自動的に Collection でいくつかの CRUD を Meteor で実行したいと考えています。ということで使っsetTimeOut
ていますが難しそうです。
私が間違っていることについて何か考えはありますか?