我正在学习猫鼬,并尝试在猫鼬模式中将“ trim”设置为true。但是它没有按预期工作。
我尝试将“小写”等其他设置设置为true,并且确实起作用,所以我不知道为什么“修剪”不起作用。
var userSchema = {
name: {type: String, required: true, trim: true, lowercase: true},
email: {
type: String,
required: true,
validate: function(value){
if(!(validator.isEmail(value))){
throw new Error("Not a valid email address");
}
},
trim: true,
},
age: {
type: Number,
validate: function(value){
if(value < 0){
throw new Error("Age must be a positive number");
}
},
default: 0
},
password: {
type: String,
required: true,
minlength: 7,
validate: function(value){
if(value.toLowerCase().includes("password")){
throw new Error(" Passwords should not contain the word
'password ' ");
}
},
trim: true
}
}
var User = mongoose.model('User', userSchema);
var someuser = new User({
name: "some user",
age: 25,
email: "user@something.com",
password: "verysecurepassword"
})
我希望新用户的名称为“ someuser”,但实际上却是“ some user”。
答案 0 :(得分:0)
名称“某些用户”在字符串中间有空格。
您尝试执行的操作将不起作用,因为trim
仅会删除字符串开头和结尾的空格。
答案 1 :(得分:0)
请检查文档中的 trim()
定义,您似乎正在尝试删除字符串中间不需要的字符,但 trim()
仅在开头和结尾删除它们字符串 MongoDocs
我建议您为此定义一个自定义的 setter
middleware 或 preSave
middleware docs 钩子并使用正则表达式转换字符串(如果您只想删除空格): str.replace( /\s\s+/g, ' ' )