评论页中切换到我的评论就显示不了时间了?
发布于 6 年前 作者 klei 3954 次浏览 来自 官方Issues
  //获取我的所有评论列表
  getMyCommentList() {
    let that = this;
    //请求自己后台获取用户openid
    DB.collection("pinglun").get()
      .then(res => {
        console.log("查询评论成功", res)
        if (res && res.data) {
          let dataList = res.data;
          that.setData({
            list: dataList
          })
        } else {
          that.setData({
            list: []
          })
        }
      }).catch(res => {
        console.log("查询评论失败", res)
      })
  },

回到顶部