微信小程序 页面跳转 传对象

时间:2021-01-22 16:49:05   收藏:0   阅读:30

点击事件函数

    console.log(iteminfo_object)
    var str= JSON.stringify(iteminfo_object);
    wx.navigateTo({
        url: ‘../info/info?str=‘+ str ,
      })
 
 
接收函数
  onLoad: function (option) {
    var newdata = JSON.parse(option.str)
    this.setData({
      confo_info: newdata
    });
  },

原文:https://www.cnblogs.com/lsyy2017/p/14313506.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!