#javascript #mongoose
#javascript #мангуст
Вопрос:
У меня есть ProfileSchema, в которой я хочу отслеживать опубликованные сообщения. Когда я сохраняю новую запись, у нее есть Profile_id, но когда я извлекаю запись профиля, массив записей пуст. Как это работает?
Схема профиля
const mongoose = require('mongoose');
const Schema = mongoose.Schema;
const ProfileSchema = new mongoose.Schema({
user: {
type: Schema.Types.ObjectId,
ref: 'users'
},
handle: {
type: String,
required: true,
max: 40
},
posts: [
{
type: Schema.Types.ObjectId,
ref: 'posts'
}
],date:{
type: Date,
default: Date.now
}
})
module.exports = Profile = mongoose.model('profile', ProfileSchema);
Схема публикации
const PostSchema = new Schema({
user: {
type: Schema.Types.ObjectId,
ref: 'users'
},
profile: {
type: Schema.Types.ObjectId,
ref: 'profile'
},
title: {
type: String,
required: true,
max: 40
},
body: {
type: String,
required: true
},
date: {
type: Date,
default: Date.now
}
})
module.exports = Profile = mongoose.model('posts', PostSchema)
как я ее сохраняю
router.post('/', passport.authenticate('jwt', {session: false}), (req,res) => {
const newPost = new Post({
title: req.body.title,
body: req.body.body,
img: req.body.img,
user: req.user._id,
profile: req.body.profile_id
});
newPost.save().then(post => res.json(post));
})
Я немного смущен, документация mongoose использует синтаксис, с которым я не знаком или еще не изучил их путь. мой user
заполняется, когда я извлекаю данные профиля, но posts
массив остается пустым, когда я его заполняю.