小程序:bindtab 页面跳转传递对象

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))
  }
小程序:bindtab 页面跳转传递对象小程序:bindtab 页面跳转传递对象 guangdeshishe 发布了35 篇原创文章 · 获赞 2 · 访问量 4670 私信 关注
上一篇:C#调用资源管理器中的音频文件


下一篇:spring-boot