0
我一直在增加驗證到我的領域與貓鼬但是當我測試了一下,貓鼬說我,說我沒有通過驗證最大的_id屬性驗證錯誤貓鼬
var userSchema = new mongoose.Schema{
_id : {
type : number,
min:[6,"Your id is too short"],
max:[10,"Your id is too large"]
//This is the validation that sends
// me when I put 2013090464 (10 digits)
}
}