日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 前端技术 > HTML >内容正文

HTML

前端学习(1342):mongoose验证规则拿到错误信息

發布時間:2023/12/10 HTML 38 豆豆
生活随笔 收集整理的這篇文章主要介紹了 前端学习(1342):mongoose验证规则拿到错误信息 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

const mongoose = require('mongoose'); mongoose.connect('mongodb://localhost/playground', { useUnifiedTopology: true }).then(() => console.log('數據庫連接成功')).catch(err => console.log(err, '數據庫連接失敗'))//創建集合規則 const postSchema = new mongoose.Schema({title: {type: String,require: [true, '請傳入文章標題'],minlength: [2, '輸入長度不能小于2'],maxlength: [5, '輸入長度不能大于5'],const mongoose = require('mongoose'); mongoose.connect('mongodb://localhost/playground', { useUnifiedTopology: true }).then(() => console.log('數據庫連接成功')).catch(err => console.log(err, '數據庫連接失敗'))//創建集合規則 const postSchema = new mongoose.Schema({title: {type: String,require: [true, '請傳入文章標題'],minlength: [2, '輸入長度不能小于2'],maxlength: [5, '輸入長度不能大于5'],//不允許有空格trim: true},age: {type: Number,//數字得最小范圍min: 18,//數字得最大范圍max: 100},publishDate: {type: Date,default: Date.now},category: {type: String,enum: {values: ['html', 'css', 'javascript'],message: '傳入得不符合規則'},},author: {type: String,validate: {validator: v => {//true 驗證成功//false驗證失敗v.length>4return v && v.length > 4},//自定義錯誤信息message: '傳入得值不符合規則'}} }); const Post = mongoose.model('Post', postSchema); //插入數據 Post.create({ title: 'aa', age: 60, category: 'java', author: '125' }).then(result => console.log(result)).catch(error => {//獲取錯誤信息對象const err = error.errors;//循環錯誤對象for (var attr in err) {console.log(err[attr]['message'])}});//不允許有空格trim: true},age: {type: Number,//數字得最小范圍min: 18,//數字得最大范圍max: 100},publishDate: {type: Date,default: Date.now},category: {type: String,enum: ['html', 'css', 'javascript']},author: {type: String,validate: {validator: v => {//true 驗證成功//false驗證失敗v.length>4return v && v.length > 4},//自定義錯誤信息message: '傳入得值不符合規則'}} }); const Post = mongoose.model('Post', postSchema); //插入數據 Post.create({ title: 'aa', age: 60, category: 'java', author: '125' }).then(result => console.log(result)).catch(err => {//獲取錯誤信息對象const err = err.errors;//循環錯誤對象for (var attr in arr) {console.log(err[attr]['message'])}});

運行結果

總結

以上是生活随笔為你收集整理的前端学习(1342):mongoose验证规则拿到错误信息的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。