gpt4 book ai didi

node.js - 如何获取用户的分页提要,其中包含他关注的用户创建的帖子?

转载 作者:太空宇宙 更新时间:2023-11-03 22:20:25 25 4
gpt4 key购买 nike

我正在为一个应用程序开发一个nodejs后端,用户将能够在其中看到他/她关注的用户创建的帖子。

我想使用 Mongoose 来做到这一点。

我的用户架构:

const userSchema = new mongoose.Schema({
name: {
type: String,
required: true
},
email: {
type: String,
required: true
},
hashed_password: {
type: String,
required: true
},
isVerified: {
type:Boolean,
default: false
},
emailVerificationToken: String,
emailVerificationTokenExpires: Date,
followers: [{ type: ObjectId, ref: 'User'}],
following: [{ type: ObjectId, ref: 'User'}],
posts: [{type: ObjectId, ref: 'Post'}],
bio: String,
website: String
});

我的帖子架构:

const postSchema = new mongoose.Schema({
title: {
type: String,
required: true
},
url: {
type: String,
required: true
},
description: {
type: String,
},
website: String,
tags : [String],
createdBy: { type: ObjectId, ref: 'User'}
});

我已经尝试过这个:

  User.findById(currentUserId)
.populate("following","posts")
.populate("following.posts","_id title")
.skip()
.limit()
.exec(function(err,users){
res.send(users);
});

这将返回带有关注者的分页用户及其填充的帖子。我只想要所有用户的帖子。谁能帮我解决这个问题吗?

最佳答案

我认为您在 userSchema 中将帖子拼写为 pin。

此外,您正在获取用户,相反,您应该获取包含该帖子的用户数据的所有帖子。

Post.find({})
.populate("createdBy")
.exec(function(err,users){
res.send(users);
});

关于node.js - 如何获取用户的分页提要,其中包含他关注的用户创建的帖子?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56658101/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com