前端学习(1341):mongoose验证规则延伸
生活随笔
收集整理的這篇文章主要介紹了
前端学习(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验证规则延伸的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 开发的免费Windows 8 应用程序
- 下一篇: 使用foobar2000将cue文件分割