当前位置:网站首页>uni-app---uni.navigateTo跳转传参使用
uni-app---uni.navigateTo跳转传参使用
2022-07-05 09:26:00 【左手牵**右手】
uni-app有自己语法。我们使用的时候传参,传字符串或对象,
字符串传参数:可以拼接地址
goreportdetails(id) {
uni.navigateTo({
url: '/pages/reportdetails/reportdetails?id=' + id + '&name=edit'
})
},
对象传参数:有些时候参数会丢失,所以借助encodeURIComponent
uni.navigateTo({
url: '/pages/build/build?list=' + encodeURIComponent(JSON.stringify(this.itemList)) + '&name=' + this.name +'&totalScore=' + this.totalScore + '&content=' + this.content+ '&uid=' + this.uid,
})
那么接收参数就:
onLoad(option) {
if (option) {
this.name = option.name
this.uid = option.uid
if (option.list) {
this.list = JSON.parse(decodeURIComponent(option.list));
}
}
}
边栏推荐
- Jenkins Pipeline 方法(函数)定义及调用
- Applet global style configuration window
- mysql安装配置以及创建数据库和表
- 信息与熵,你想知道的都在这里了
- Nips2021 | new SOTA for node classification beyond graphcl, gnn+ comparative learning
- fs. Path module
- 混淆矩阵(Confusion Matrix)
- Svgo v3.9.0+
- [beauty of algebra] singular value decomposition (SVD) and its application to linear least squares solution ax=b
- Lepton 无损压缩原理及性能分析
猜你喜欢
Unity SKFramework框架(二十三)、MiniMap 小地图工具
Principle and performance analysis of lepton lossless compression
nodejs_ 01_ fs. readFile
Introduction Guide to stereo vision (5): dual camera calibration [no more collection, I charge ~]
Using request headers to develop multi terminal applications
Applet network data request
Applet data attribute method
Rebuild my 3D world [open source] [serialization-3] [comparison between colmap and openmvg]
OpenGL - Lighting
c语言指针深入理解
随机推荐
【愚公系列】2022年7月 Go教学课程 003-IDE的安装和基本使用
. Net service governance flow limiting middleware -fireflysoft RateLimit
Applet data attribute method
MySQL does not take effect in sorting string types
Applet network data request
Unity skframework framework (XXII), runtime console runtime debugging tool
NIPS2021 | 超越GraphCL,GNN+对比学习的节点分类新SOTA
Kotlin introductory notes (VI) interface and function visibility modifiers
Rebuild my 3D world [open source] [serialization-3] [comparison between colmap and openmvg]
mysql安装配置以及创建数据库和表
Ministry of transport and Ministry of Education: widely carry out water traffic safety publicity and drowning prevention safety reminders
迁移学习和域自适应
Wxml template syntax
[ctfhub] Title cookie:hello guest only admin can get flag. (cookie spoofing, authentication, forgery)
Understanding of smt32h7 series DMA and DMAMUX
利用请求头开发多端应用
一次 Keepalived 高可用的事故,让我重学了一遍它
.NET服务治理之限流中间件-FireflySoft.RateLimit
阿里十年测试带你走进APP测试的世界
Creation and reference of applet