1、 点击时获取对象数据
<button bindtap="goEdit" data-myObject="{{item}}" >编辑</button>
2、将对象转成json字符串并decode
goEdit: function(e){
var myObject = e.currentTarget.dataset.myObject
wx.navigateTo({
url: '/pages/info/edit/editInfo?myObject =' + decodeURIComponent(JSON.stringify(myObject)),
})
}
3、在跳转后的页面onLoad方法中,将decode后的json字符串恢复成对象
onLoad: function (options) {
var myObject = JSON.parse(decodeURIComponent(options.driverInfo))
}
guangdeshishe
发布了35 篇原创文章 · 获赞 2 · 访问量 4670
私信
关注