
代碼:
? ?wx.cloud.database().collection("goods").get().then(res?=>?{
??????console.log(res.data)
?????this.setData({dataList:res.data})
????}).catch(err?=>?{
??????console.log(err)
????})

代碼:
<view?wx:for="{{dataList}}"?wx:key="index"?bindtap="jumpAnother"?data-id="{{item._id}}">
?<view>商品名稱:{{item.name}}</view>
?<view>商品價格:{{item.price}}</view>
</view>

代碼:
jumpAnother(e){
?????console.log("hhha",e.currentTarget.dataset.id)
?????wx.navigateTo({
???????url:?'/pages/demo/demo?id='+e.currentTarget.dataset.id,
?????})
??},

代碼:
data:?{
????goods:{}
??},
??/**
???*?生命周期函數(shù)--監(jiān)聽頁面加載
???*/
??onLoad:?function?(options)?{
? ? console.log(options.id,"options")
????wx.cloud.database().collection("goods").doc(options.id).get().then(res?=>?{
??????//?console.log(res.data)
??????this.setData({goods:res.data})
????}).catch(err?=>?{
??????console.log(err);
????})
??},