一,引入
当想要把文章的作者和用户中的人连接起来时,只要把用户的id给文章的author即可,但是还读取不到其他的用户信息,比如年龄和爱好等。
这时候就需要使用populate方法了:
二,实际例子:
const mongoose = require('mongoose');
mongoose.connect('mongodb://localhost/playground', { useNewUrlParser: true})
.then(() => console.log('数据库连接成功'))
.catch(err => console.log(err, '数据库连接失败'));
// 用户集合规则
const userSchema = new mongoose.Schema({
name: {
type: String,
required: true
}
});
// 文章集合规则
const postSchema = new mongoose.Schema({
title: {
type: String
},
author: {
type: mongoose.Schema.Types.ObjectId, //id的类型是这个
ref: 'User' //利用ref关联User
}
});
// 用户集合
const User = mongoose.model('User', userSchema);
// 文章集合
const Post = mongoose.model('Post', postSchema);
// 创建用户
User.create({name: 'itheima'}).then(result => console.log(result));
// 创建文章
Post.create({titile: '123', author: '5f3beb4e20dd974774bc3b7c'}).then(result => console.log(result));
Post.find().populate('author').then(result => console.log(result))
第一步:在文章下使用author属性,里面设置属性:
author: {
type: mongoose.Schema.Types.ObjectId, //id的类型是这个
ref: 'User' //利用ref关联User
}
第二步,创建文章时,author需要引入对应 用户的id值
Post.create({titile: '123', author: '5f3beb4e20dd974774bc3b7c'}).then(result => console.log(result));
第三步,查询:利用populate方法,搞出对应的作者相关的信息。
Post.find().populate('author').then(result => console.log(result))