deno.land / x / mongoose@6.7.5 / docs / validation.md
Before we get into the specifics of validation syntax, please keep the following rules in mind:
pre('save') hook on every schema by default.doc.validate(callback) or doc.validateSync()doc.invalidate(...)required validator.[require:Validation$]unique Option is Not a ValidatorthisMongoose has several built-in validators.
checkRequired() function to determine if the value satisfies the required validator.min and max validators.enum, match, minLength, and maxLength validators.Each of the validator links above provide more information about how to enable them and customize their error messages.
[require:Built-in Validators]You can configure the error message for individual validators in your schema. There are two equivalent ways to set the validator error message:
min: [6, 'Must be at least 6, got {VALUE}']enum: { values: ['Coffee', 'Tea'], message: '{VALUE} is not supported' }Mongoose also supports rudimentary templating for error messages.
Mongoose replaces {VALUE} with the value being validated.
[require:Custom Error Messages]unique Option is Not a ValidatorA common gotcha for beginners is that the unique option for schemas
is not a validator. It's a convenient helper for building MongoDB unique indexes.
See the FAQ for more information.
[require:The `unique` Option is Not a Validator]If the built-in validators aren't enough, you can define custom validators to suit your needs.
Custom validation is declared by passing a validation function.
You can find detailed instructions on how to do this in the
SchemaType#validate() API docs.
[require:Custom Validators]Custom validators can also be asynchronous. If your validator function
returns a promise (like an async function), mongoose will wait for that
promise to settle. If the returned promise rejects, or fulfills with
the value false, Mongoose will consider that a validation error.
[require:Async Custom Validators]Errors returned after failed validation contain an errors object
whose values are ValidatorError objects. Each
ValidatorError has kind, path,
value, and message properties.
A ValidatorError also may have a reason property. If an error was
thrown in the validator, this property will contain the error that was
thrown.
[require:Validation Errors]Before running validators, Mongoose attempts to coerce values to the
correct type. This process is called casting the document. If
casting fails for a given path, the error.errors object will contain
a CastError object.
Casting runs before validation, and validation does not run if casting
fails. That means your custom validators may assume v is null,
undefined, or an instance of the type specified in your schema.
[require:Cast Errors]In addition to defining custom validators on individual schema paths, you can also configure a custom validator to run on every instance of a given SchemaType.
For example, the following code demonstrates how to make empty string '' an invalid value for all string paths.
[require:Global SchemaType Validation]Defining validators on nested objects in mongoose is tricky, because nested objects are not fully fledged paths.
[require:Required Validators On Nested Objects]In the above examples, you learned about document validation. Mongoose also
supports validation for update(),
updateOne(),
updateMany(),
and findOneAndUpdate() operations.
Update validators are off by default - you need to specify
the runValidators option.
To turn on update validators, set the runValidators option for
update(), updateOne(), updateMany(), or findOneAndUpdate().
Be careful: update validators are off by default because they have several
caveats.
[require:Update Validators$]thisThere are a couple of key differences between update validators and
document validators. In the color validation function below, this refers
to the document being validated when using document validation.
However, when running update validators, this refers to the query object instead of the document.
Because queries have a neat .get() function, you can get the updated value of the property you want.
[require:Update Validators and `this`]The other key difference is that update validators only run on the paths specified in the update. For instance, in the below example, because 'name' is not specified in the update operation, update validation will succeed.
When using update validators, required validators only fail when
you try to explicitly $unset the key.
[require:Update Validators Only Run On Updated Paths]One final detail worth noting: update validators only run on the following update operators:
$set$unset$push$addToSet$pull$pullAllFor instance, the below update will succeed, regardless of the value of
number, because update validators ignore $inc.
Also, $push, $addToSet, $pull, and $pullAll validation does
not run any validation on the array itself, only individual elements
of the array.
[require:Update Validators Only Run For Some Operations]Now that we've covered Validation, let's take a look at Middleware.
Version Info