***传参***
let arr=encodeURIComponent(JSON.stringify(i)) 把字符串作为 URI 组件进行编码。
   wx.navigateTo({
   url: '/pages/information/information?arr='+arr,
   })
   
		***接参***
  onLoad: function (options) {
    let cc=JSON.parse(decodeURIComponent(options.arr)) 对encodeURIComponent() 函数编码的 URI 进行解码。
  

  },
Logo

前往低代码交流专区

更多推荐