前端学习(1354):集合关联
生活随笔
收集整理的這篇文章主要介紹了
前端学习(1354):集合关联
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
const mongoose = require('mongoose');
mongoose.connect('mongodb://localhost/playground', { useUnifiedTopology: true }).then(() => console.log('數(shù)據(jù)庫連接成功')).catch(err => console.log(err, '數(shù)據(jù)庫連接失敗'))
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);//創(chuàng)建用戶
/* 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)) */
運(yùn)行結(jié)果
總結(jié)
以上是生活随笔為你收集整理的前端学习(1354):集合关联的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 前端学习(1171):includes方
- 下一篇: 2017年html5行业报告,云适配发布