-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcustom-messages.js
48 lines (44 loc) · 1.43 KB
/
custom-messages.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
const mongoose = require('mongoose');
const mongooseErrorHandler = require('../');
const schema = new mongoose.Schema({
name: {
type: String,
required: true,
},
});
const model = mongoose.model('person', schema);
const messages = {
base: '{path} is invalid',
required: '{path} is required',
enum: '{path} is invalid',
validate: '{path} is invalid',
unique: '{path} already exists',
boolean: '{path} must be a boolean',
buffer: '{path} must be a buffer',
objectId: '{path} must be a objectId',
map: '{path} must be a Map',
string: '{path} must be a string',
maxlength: '{path} length must be less than or equal to {maxlength} characters long',
minlength: '{path} length must be at least {minlength} characters long',
regexp: '{path} format is invalid',
number: '{path} must be a number',
'number.max': '{path} must be greater than or equal to {max}',
'number.min': '{path} must be less than or equal to {min}',
date: '{path} must be a date',
'date.max': '{path} must be less than or equal to {max}',
'date.min': '{path} must be greater than or equal to {min}',
}
const object = new model({});
object.save(function (err, doc) {
if (err) {
const error = mongooseErrorHandler(err, { messages });
console.log(error);
/**
* Error [MongooseValidatorError]: name is required
* name: 'MongooseValidatorError',
* path: 'name',
* kind: 'required',
* value: undefined
*/
}
});