I am trying to save a document in async mongodb schema validator in node.js. I set a custome validation 'tag' named attribute in mongodb schema. The validator in 'tag' is async. The program adds the document in the the mongodb but after the 4 seconds (setTimeout()), it gives the error that callback is not a function.
const mongoose = require('mongoose');
mongoose.connect('mongodb://localhost/playground')
.then(() => console.log('Connected with MongoDB...'))
.catch(err => console.log("Couldn't connect with MongoDB!!!", err));
const courseSchema = new mongoose.Schema({
name: { type: String, required: true, minlength: 3, maxlength: 55 },
author: String,
edition: Number,
categories: {
type: String,
enum: ['web', 'mobile', 'research', 'networking'],
required: true
},
tags: {
type: Array,
validate: {
isAsync: true,
validator: function (v, callback) {
setTimeout(() => {
const result = v && v.length > 0;
callback(result);
}, 4000);
},
message: 'A course should have at least one tags'
}
},
data: { type: Date, default: Date.now },
isPublished: Boolean,
price: { type: Number, min: 5, max: 50, required: function () { return this.isPublished } }
});
const Course = mongoose.model('Course', courseSchema);
async function createCourse() {
const course = new Course({
name: "Compiler Constructions",
author: "Mudassir",
edition: 2,
categories: 'web',
tags: ['CUI'],
isPublished: false,
price: 8
});
try {
const result = await course.save();
console.log(result);
}
catch (err) {
console.log(err.message);
}
}
createCourse();