想要通过传过来的值作为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和字符串1不相等的