I have an schema like this:
var testSchema = new Schema({
foo: { type: String, required: true, trim: true },
bar: {
fooBar: { type: String },
barFoo: { type: String }
}
});
And I must validate values of bar based on foo values, something like this:
testSchema.path("bar").validate(function(bar){
if(this.foo === "someValue")
//return custom validation logic 1
else if(this.foo === "anotherString")
//return custom validation logic 2
else
return false;
});
But when I try to strat my app I get the following error:
/Users/Renato/github/local/prv/domain/models/testModel.js:34
testSchema.path("bar").validate(function(bar){
^
TypeError: Cannot call method 'validate' of undefined
What am I doing wrong here? Whats the correct way to validate this object??? I googled for it but I could not seem to find anything out! Even updated my mongoose version to ~3.5.5