vue跳转页面传对象

		***传参***
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 进行解码。
  

  },

你可能感兴趣的:(js,json,vue,javascript)