微信小程序不同页面传值方法

微信小程序不同页面传值方法,用过两种设置缓存和通过url传值。
1.设置缓存
设置缓存:wx.setStorageSync(‘message缓存名字’,res.data.message缓存值)
获取缓存:wx.getStorageSync(‘message缓存名字’)

2.通过url传值
在url中传入要发送的值
wx.navigateTo({
url: ‘…/sectionItem/sectionItem?id=’ + that.data.id + ‘&chapter=’ + event.currentTarget.dataset.id,
})

需要加载的page中的onLoad方法中获取值
onLoad:function (options){
console.log(“id:”+options.id)
console.log(“chapter:”+options.chapter)
}

你可能感兴趣的:(微信小程序不同页面传值方法)