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