第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會有你想問的

貓鼬按日期排序,多個(gè)查詢

貓鼬按日期排序,多個(gè)查詢

繁華開滿天機(jī) 2023-04-01 15:57:46
我的網(wǎng)站上有一個(gè)“已關(guān)注”部分,它會檢索用戶已關(guān)注的所有用戶的帖子。有沒有辦法讓這些按日期排序?這是到目前為止的代碼:exports.followedPosts = async (req, res) => {  try {    const user = await User.findById(req.user._id);    const posts = [];    for (const follow of user.follows) {      const partPosts = await Post.find({ author: follow.user })        .select('-comments')        .populate('author')        .exec();      for (const post of partPosts) {        posts.push(post);      }    }    res.send(posts);  } catch (err) {    console.error(err.message);    res.status(500).send('server error');  }};
查看完整描述

1 回答

?
慕婉清6462132

TA貢獻(xiàn)1804條經(jīng)驗(yàn) 獲得超2個(gè)贊

您可以使用$in在一個(gè)查詢中找到關(guān)注用戶的所有帖子并對該查詢進(jìn)行排序。例子:

let follow_users = user.follows.map(follow => follow.user);


const posts = await Post.find({ author: { $in: follow_users } })

? ? .select('-comments')

? ? .sort({date: 1})

? ? .populate('author')

? ? .exec();


查看完整回答
反對 回復(fù) 2023-04-01
  • 1 回答
  • 0 關(guān)注
  • 98 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號