前端学习(1354):集合关联
生活随笔
收集整理的這篇文章主要介紹了
前端学习(1354):集合关联
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
const mongoose = require('mongoose');
mongoose.connect('mongodb://localhost/playground', { useUnifiedTopology: true }).then(() => console.log('數據庫連接成功')).catch(err => console.log(err, '數據庫連接失敗'))
const userSchema = new mongoose.Schema({name: {type: String,required: true}
});
const postSchema = new mongoose.Schema({titie: {type: String},author: {type: mongoose.Schema.Types.ObjectId,ref: 'User'}
});const User = mongoose.model('User', userSchema);const Post = mongoose.model('Post', postSchema);//創建用戶
/* User.create({ name: 'geyao' }).then(result => console.log(result)) */
/* Post.create({ titie: '123', author: '5ebe6d2fe4235b14b4424558' }).then(result => console.log(result)) */
Post.create({ titile: '123', author: '5ebe9383aec3f03ec885764c' }).then(result => console.log(result))/* Post.find().populate('author').then(result => console.log(result)) */
運行結果
總結
以上是生活随笔為你收集整理的前端学习(1354):集合关联的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 前端学习(1171):includes方
- 下一篇: SQLserver 2005 安装文档