我也遇到这个问题,没错误但是就是不可以倒序显示 [图片] app.router('list', async (ctx, next) =>{ let blogList = await blogCollection .skip(event.start) .limit(event.count) .orderBy('creatrTime','desc') .get().then((res) => { return res.data }) ctx.body = blogList })
使用orderBy按顺序取数无效?我的云数据库中有500多条数据,在上传过程中数据被打乱,打算在取数时按照“xh”的大小顺序取出来使用,但是使用orderBy('xh', 'desc')无效,不知道问题出在哪里,还请帮忙指教,代码如下,谢谢 for (let i = 0; i < batchTimes; i++) { const promise = await db.collection('counters').orderBy('xh', 'desc').skip(i * MAX_LIMIT).limit(MAX_LIMIT).get() tasks.push(promise) }
2020-08-04https://developers.weixin.qq.com/s/TcJ91fmc7Nji 云端是可以插入数据到数据库的,但是返回的RESULT为空。
TypeError: Cannot read property 'data' of null?[图片][图片] 弄了两天,但还是不知道哪一步有问题,之前是可以的,突然就不行了。
2020-07-31