vue跳转页面传对象
***传参***let arr=encodeURIComponent(JSON.stringify(i)) 把字符串作为 URI 组件进行编码。wx.navigateTo({url: '/pages/information/information?arr='+arr,})***接参***onLoad: function (options) {let cc=JSON.parse(decodeURIC
·
***传参***
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 进行解码。
},
更多推荐
已为社区贡献2条内容
所有评论(0)