微信小程序 功能函数 点击传参和页面

Posted ThisCall

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序 功能函数 点击传参和页面相关的知识,希望对你有一定的参考价值。

// 商品详情页跳转函数
detailInto: function (e) {
// console.log()
var change = e.currentTarget.dataset.id;
wx.navigateTo({
url: ‘../detail/detail?id=‘ + change
})
},
//接收的页面
onLoad: function (opt) {
var selectnum= this.data.selectnum;
selectnum.sq = opt.key;

this.setData({
selectnum: selectnum,
shoplist: this.data.shops
});

以上是关于微信小程序 功能函数 点击传参和页面的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序通过点击事件传参(data-)

微信小程序页面之间传参

微信小程序页面传参实现列表中item点击跳转并传参到编辑页面

微信小程序返回上一页传参并刷新

微信小程序点击事件bindtap如何传参

微信小程序点击事件bindtap如何传参