uniapp uni.navigateTo 传值传对象
时间:2021-01-26 12:42:37
收藏:0
阅读:503
uni.navigateTo({ url: ‘/pages/details?obj=‘+ encodeURIComponent(JSON.stringify(item)) });
接收:
onLoad(option) { this.item=JSON.parse(decodeURIComponent(option.obj)); }
原文:https://www.cnblogs.com/luo1240465012/p/14329404.html
评论(0)