日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

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

HTML

前端学习(1341):mongoose验证规则延伸

發布時間:2023/12/10 HTML 46 豆豆
生活随笔 收集整理的這篇文章主要介紹了 前端学习(1341):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'],//不允許有空格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: 'html', author: '12345' }).then(result => console.log(result));

運行結果

總結

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

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