前端学习(1340):mongoose验证规则
生活随笔
收集整理的這篇文章主要介紹了
前端学习(1340):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,maxlength: 5,trim: true}
});
const Post = mongoose.model('Post', postSchema);
//插入數據
Post.create({}).then(result => console.log(result));
?
總結
以上是生活随笔為你收集整理的前端学习(1340):mongoose验证规则的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 前端获取北京时间_js获取标准北京时间
- 下一篇: 前端学习(1331):mongoose第