美文网首页
事件传参的问题

事件传参的问题

作者: 稻草人_9ac7 | 来源:发表于2019-11-07 22:41 被阅读0次
    传参
    //xxx.wxml
    <view class="gridContent">
           <van-grid column-num="4" class="grid" border="{{ false }}">      
          <van-grid-item icon="{{item.iconUrl}}" text="{{item.name}}" wx:for="{{Category}}"       
    wx:key="{{index}}" bindtap="gotoCategory" data-index="{{item.categoryId}}"/>
          
        
            </van-grid>
        </view>
    

    接收

      gotoCategory:function(options){
        //根据传过来的分类Id传过去
        console.log("分类的Id=====", options.currentTarget.dataset.index)
        // 把获取商品分类的Id赋值给全局的变量,我们想要在下一页获取参数,直接获取就行,注意不能把参数放在url中
        app.$categoryId= options.currentTarget.dataset.index
    
        console.log(" app.$categoryId", app.$categoryId)
        // 普通页面跳转
        console.log("options", options)   
        wx.switchTab({
          url: '/pages/category/category',
      })
    
      }
    
    

    相关文章

      网友评论

          本文标题:事件传参的问题

          本文链接:https://www.haomeiwen.com/subject/acubbctx.html