0

为什么下面的代码会导致 Mongoosesave失败?如果我删除validate: utils.uuid.isValid(返回布尔值)该过程将完成:

var accountSchema = new mongoose.Schema({

    _id : { type: String, default: utils.uuid.init, validate: utils.uuid.isValid },

    n   : { type: String }, // Display Name

    ac  : { type: Date },
    au  : { type: Date },
    ad  : { type: Date },
    am  : { type: String }
});

此外,如果我删除该validate字段的属性,并尝试在pre('validate', cb)orpre('save', cb)调用中设置值,这将导致相同的结果:

accountSchema.pre('validate', function(next) {
    var now      = new Date(),
        memberId = this.am;
    console.log('In Account validate (member : ' + memberId + ')');
    if (this.isNew) { this.ac = now; console.log('Item is new.'); }
    else if (this.isModified()) { this.au = now; console.log('Item is modified.'); }
    else { return next();
        console.log('Canceling Account validate.');
    }
    console.log(JSON.stringify(this));
    console.log('Completed Account validate.');
    next();
});

没有什么崩溃。在 Webstorm 中,处理只是停止并显示消息“处理完成,退出代码 139”。

4

0 回答 0