如果页面本身url含有参数,转发设置的参数就无效
return {
title: ‘’,
desc: ‘’,
path: ‘/pages/expertDetail/index?userIdA=123’
}
如果本页面本来url中就是/pages/expertDetail/index?params=abx’形式的
转发后 无法在
onLoad (options){
console.log(options.userIdA)
}
获取到userIdA
8 回复
我要转发的页面是通过
wx.navigateTo({ url: `/pages/expertDetail/index?openId=${event.currentTarget.dataset.openid}&userId=${event.currentTarget.dataset.userid}` }) |
打开的
我想转发本页面并带参数
return { title: '' , desc: '' , path: '/pages/expertDetail/index?userIdA=123' } |
然后并不能获取到
onLoad (options){ console.log(options.userIdA) } |