微信小程序页面间如何传id 微信小程序 页面传值

主机教程 建站分享 2年前 (2022-09-21) 225次浏览

文章摘要:微信小程序页面间如何传id 微信小程序 页面传值

微信小程序页面间传id的方法: 在.wxml文件中添加以下代码 <block wx:for-i […]

微信小程序页面间传id的方法:

在.wxml文件中添加以下代码

<block wx:for-items="{{newGoods}}" wx:key="id">

            <view  catchtap="catchTapCategory" data-goodsid="{{item.id}}">

              <view>

                <image src="{{item.imgUrl}}" /> 

              </view>

              <view class="product-name">

                {{item.name}}           

              </view>

</view>

</block>

在.js文件中添加以下代码

catchTapCategory: function (e) {

    var that = this;

    var goodsId = e.currentTarget.dataset.goodsid;

    console.log('goodsId:' + goodsId);    

    wx.navigateTo({ url: '../detail/detail?goodsId=' + goodsId })

 },


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:微信小程序页面间如何传id 微信小程序 页面传值
文章链接:http://www.7966.org/post/12944.html
转载请注明出处

喜欢 (0)