https://developers.weixin.qq.com/s/eGxf9Jmz71af
在跳转页面里传参数就可以了。
比如 /pages/map/map?address=天安门
然后在新页面onLoad里接收参数即可。
如果数据过多,可以用 app全局变量或者缓存到手机上
第一工暂存的方法(优点不受路由限制)第二用栈页面传参(缺点首页面路由影响)。第四用全局边路调用(优点不受路由影响)
wx.setStorage({//存储到本地
key:“testNum”,
data:Num
})
wx.getStorage({//获取本地缓存
success:function(res){
console.log(res.data)//获取到的缓存数据
}
代码片段打不开