文章摘要:小程序如何获取当前页面的id 怎么找到小程序的页面
小程序获取当前页面id的案例: .wxml文件代码: &nbs […]
小程序获取当前页面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 })
},