分页读取集合的数据(因此也是分页加载),怎么按时间排序?
db.collection(‘xxx’).orderBy(‘createTime’, ‘desc’).skip(0).limit(20).get();
还有,为什么集合读取记录不能直接从最后一个往前面读?