小程序中where条件查询

1.where是条件查询

    wx.cloud.database().collection("password")
    .where({//条件查询
        user: 'potato'
      })
     .get()
     .then(res => {
        console.log("成功", res)
        this.setData({
          list: res.data
        })
      })
      .catch(
        error => {
          console.log("失败", error)
        }
      )

你可能感兴趣的:(微信小程序笔记,小程序)