Express.js日期验证

时间:2017-06-21 08:50:50

标签: javascript schema

我想使用currentdate验证联合日期 如果jointdate大于当前日期,我想抛出一个错误代码。     使用架构级别验证 架构:

var datevalidation=function(value){
        return value.joindate>value.now+1;
    }
    var EmployeeSchema=new mongoose.Schema({
    joindate:{
        type:Date,
        validate:[datevalidation,'please enter correct date']
    }
})

0 个答案:

没有答案