数据库有三条数据 ,但是查询 出来为空
来源:5-10 博客卡片组件blog-card
慕前端8419733
2020-09-17
let blogList = await blogCollection.skip(event.start).limit(event.count)
.orderBy('createTime', 'desc').get().then((res) => {
return res.data
})
ctx.body = blogList
})
_loadBlogList(){
wx.cloud.callFunction({
name: ‘blog’,
data:{
$url:‘list’,
start: 0,
count:10,
}
}).then((res)=>{
this.setData({
blogList: this.data.blogList.concat(res.result)
})
})
},
写回答
1回答
-
谢成
2020-09-18
1、请把数据库查询语句放到云控制台中,看下返回结果是什么,在这里点击加号放入查询语句:
2、请打印res,看下这里获得到的值是什么:
042020-09-18
相似问题