1、需要传递参数的页面
javascript
attended(e) {
this.id = e.baseId
let obj = {
page: this.page,
size: this.pageSize,
baseId: e.baseId,
str: this.str
uni.navigateTo({
url: `/pages/index/index?item=` + encodeURIComponent(JSON.stringify(obj))
})
}
},
encodeURIComponent
2、接收参数的页面
javascript
onLoad(options) {
this.other = JSON.parse(decodeURIComponent(options.other)
},
decodeURIComponent
在onload 生命周期里,如果遇到传参里有,复杂的参数,可以参考我的
Uniapp 报错Uncaught URIError: URI malformed
这篇文章