收藏
回答

where如何实现动态查询?

想要通过传过来的值作为where中的条件对goods表进行筛选查值,

传过来的值为category中的id值

  onLoad: function (e) {

    console.log("列表值",e)

    const id=e.id

     console.log("id的值",e)

      wx.cloud.database().collection('goods')

      .where({classID:e})

      .get()

      .then(res=>{

        console.log('商品详情页请求成功'.res)

        this.setData({

          list:res.data

        })

      })

      .catch(res=>{

        console.log('商品详情页请求失败',res)

      })

  },


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

1 个回答

  • Mr.Zhao
    Mr.Zhao
    2022-04-26

    数字1和字符串1不相等的

    2022-04-26
    有用
    回复
登录 后发表内容