我将帖子评论存储在帖子中,我现在面临的问题是我不能在文档数组上使用限制和跳过,因为用户可以发布任意数量的评论,数组会很大,所以我想对评论进行分页。
有没有办法做到这一点?
每次通话是否可以仅检索 10 条评论?
谢谢!
{
id:0,
ref:0,
type: 'image',
date: null,
title: 'this is my title',
comments:[
{
user : 'myUser',
text : 'text'
},
{
user : 'myUser2',
text : 'text2'
}
}