uniapp uni.navigateTo 传值传对象

uni.navigateTo({
                url: '/pages/details?obj='+ encodeURIComponent(JSON.stringify(item))
              });

接收:

  onLoad(option) {
      this.item=JSON.parse(decodeURIComponent(option.obj));
  }
原文地址:https://www.cnblogs.com/luo1240465012/p/14329404.html