在猫鼬上填充和分页子文档

编程入门 行业动态 更新时间:2024-10-18 12:19:38
本文介绍了在猫鼬上填充和分页子文档的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我的帖子对象包含一组评论对象,我需要根据偏移量和限制(分页)填充评论.

My Post Object contains an array of Comments Object, I need to Populate Comments based on offset and limit (Paginated).

它适用于 mongoose API,但我需要它与 mongoose-paginate-v2.

It works with mongoose API but I need it with mongoose-paginate-v2.

const post = await Post.findById(req.params.id) .populate("author") .populate("manufacturer") .populate({ path: "comments", populate: "author", options: { sort: { created_at: -1 }, skip: (pageNumber - 1) * limit, limit: limit, }, })

它必须使用 mongoose-paginate-v2 框架,因为我需要一些额外的属性,例如 total.

It has to be with mongoose-paginate-v2 framework because I need some extra properties like total.

推荐答案

document.paginate(filter, options).then(async function(result) where in the option there will be populate: { path : 'item1', populate : { path : 'item2' } },

更多推荐

在猫鼬上填充和分页子文档

本文发布于:2023-11-22 13:34:00,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1617617.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:分页   文档   猫鼬上

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!