下面的代码显示了如何验证Mongo.Cursor。我的问题是,为什么有人想要验证Mongo.cursor。这对我来说有点抽象。我的意思是,如果我操纵数据并单击按钮,我理解验证的原因,但是在Mongo.Cursor上?
Template.Lists_show.onCreated(function listShowOnCreated() {
this.autorun(() => {
new SimpleSchema({
list: { type: Function },
todosReady: { type: Boolean },
todos: { type: Mongo.Cursor },
}).validate(Template.currentData());
});