代码:
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;
}
});
然后事件名称将在终端中打印两次。
有什么想法可以防止这种情况吗?