自学内容网 自学内容网

uniapp页面传值

传变量

uni.navigateTo({
url:'/pages/page/pay?number=1'
})

uni.navigateTo({
url:'/pages/page/pay?title='+ this.title
});

uni.navigateTo({
url:'/pages/page/pay?list=' +encodeURIComponent(JSON.stringify(this.getList))
})

接收

onLoad(e){
this.number = e.number
this.title = e.title
this.list = JSON.parse(decodeURIComponent(e.list))
}

参考:uniapp页面传值总结


原文地址:https://blog.csdn.net/m0_37570176/article/details/142727473

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!