欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

微信小程序 參數(shù)傳遞實(shí)例代碼

 更新時(shí)間:2017年03月20日 10:20:21   作者:worldale  
這篇文章主要介紹了微信小程序 參數(shù)傳遞實(shí)例代碼的相關(guān)資料,需要的朋友可以參考下

微信小程序 參數(shù)傳遞實(shí)例代碼

1、通過事件傳遞參數(shù)

實(shí)例代碼:

<view data-id="103" bindtap="evenName"></view>

Page({

 evenName: function(e) {

  //獲得點(diǎn)擊事件傳遞的id

  console.log(e.target.dataset.id);

})

 2、通過頁面跳轉(zhuǎn)傳遞參數(shù)

頁面1:

wx.navigateTo({

  url: '/pages/scan-order/scan-order?scanId=' + variable

})

頁面2:/pages/scan-order/scan-order

Page({

 onLoad: function(e) {

  this.setData({

   userScanId: e.scanId

  })

 }

})

感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

相關(guān)文章

最新評論