收藏
回答

数据排序后,点赞数组错位了,咋办?

框架类型 问题类型 终端类型 AppID 基础库版本
小程序 需求 工具 wx4e1816d110c45979 2.7.1

点赞、收藏单独记录在一个数组中。

我想根据收藏的数量排序,结果乱了




回答关注问题邀请回答
收藏

1 个回答

  • 侯衍超
    侯衍超
    2019-07-24

    怎么乱了,代码发一下

    2019-07-24
    有用
    回复 1
    • 三羊CIUM
      三羊CIUM
      2019-07-24

      onLoad: function(options) {

      db.collection('restaurants')     //列表数据库,如果在这里加上.orderBy,下面的数据咋办

      .get()

      .then(res => {

      // console.log(res)

      this.setData({

      restaurants: res.data

      })

      })

      wx.cloud.callFunction({

      name: "getCollect"    //点赞数据库

      }).then(res => {

      console.log(res)

      if (res.result.data[0]) {

      this.setData({

      collect: res.result.data[0].collected

      })

      }

      })

      },


      2019-07-24
      回复
登录 后发表内容