收藏
回答

评论页中切换到我的评论就显示不了时间了?

  //获取我的所有评论列表
  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)
      })
  },

回答关注问题邀请回答
收藏
登录 后发表内容