怎么把这些保存到数据库里的评论显示出来
可以通过查询云数据库中的数据得到评论,比如:
db.collection('comment').get().then(res => {
this.setData({
commentList: res.data
})