1、定义变量(编码)
var path = encodeURIComponent(‘/pages/index/index?id=’+id)
2、页面跳转传递路由+参数
wx.navigateTo({
url:path
})
3、页面使用(解码)
onLoad(options){
var data = decodeURIComponent(options.path)
}
1、定义变量(编码)
var path = encodeURIComponent(‘/pages/index/index?id=’+id)
2、页面跳转传递路由+参数
wx.navigateTo({
url:path
})
3、页面使用(解码)
onLoad(options){
var data = decodeURIComponent(options.path)
}