sql >> Databasteknik >  >> NoSQL >> MongoDB

Mongoose - validera e-postsyntax

du kan också använda matchningen eller validera egenskap för validering i schemat

exempel

var validateEmail = function(email) {
    var re = /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/;
    return re.test(email)
};

var EmailSchema = new Schema({
    email: {
        type: String,
        trim: true,
        lowercase: true,
        unique: true,
        required: 'Email address is required',
        validate: [validateEmail, 'Please fill a valid email address'],
        match: [/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/, 'Please fill a valid email address']
    }
});


  1. Hur man använder MongoDB Connection Pooling på AWS Lambda

  2. Hur lägger man in en bildfil i ett json-objekt?

  3. Php7 Redis Client på Alpine OS

  4. Redis Cross Slot-fel