const db = wx.cloud.database();
const collection = db.collection('collectionName');
// 从近到远输出记录
collection.aggregate()
.sort({
timestampField: -1 // 按照时间戳字段降序排序
})
.end()
.then(res => {
console.log(res);
})
.catch(err => {
console.error(err);
});
在上述示例中,通过 collection.aggregate() 创建聚合对象,然后使用 .sort 方法进行排序操作。在排序操作中,timestampField: -1 表示按照名为 timestampField 的时间戳字段降序排序,即从近到远输出记录。
请根据你的实际业务需求修改示例中的字段名和排序方式。更多详细的文档和 API 可以参考[微信小程序云开发官方文档 - 数据库 - 聚合操作](https://developers.weixin.qq.com/miniprogram/dev/wxcloud/guide/database/aggregate.html)。
转载请注明出处:http://www.zyzy.cn/article/detail/1265/微信小程序