附件中有2个表 table1 table2(表是为了展现问题生成的,数据没有意义)
当我使用
await this.db.collection("table1,table2").orderBy('sort desc').skip(10* (page - 1)).limit(10).get()
这样的方式查询是第1页和第2页就会出现重复数据(如附件1.json)
await this.db.collection("table1,table2").skip(10* (page - 1)).limit(10).get()
没有orderBy时 数据就是正常的
风油精 (作者)
谢谢
2023-05-24 16:51