为什么Meteor SimpleSchema中的自定义验证器被调用两次?

时间:2016-01-17 03:51:27

标签: meteor simple-schema

代码:

Event = new Mongo.Collection('event');

var eventSchema = new SimpleSchema({
  name: {
    type: String,
    custom: function() {
      console.log(this.field('name').value);
    }
  }
});

Property.allow({
  insert: function(userId, doc) {
    check(doc, eventSchema);

    return true;
  }
});

然后在终端中打印事件名称两次。

任何阻止这种想法的想法?

0 个答案:

没有答案