orderBy('creatrTime','desc')怎么失效了?
没错误但是就是不可以倒序显示
app.router('list', async (ctx, next) =>{
let blogList = await cloud.database().collection('blog')
.skip(event.start)
.limit(event.count)
.orderBy('creatrTime','desc')
.get().then((res) => {
return res.data
})
ctx.body = blogList
})