当前位置:网站首页>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));
}
}
}
边栏推荐
- 信息與熵,你想知道的都在這裏了
- The research trend of map based comparative learning (gnn+cl) in the top paper
- Kotlin introductory notes (I) kotlin variables and non variables
- [Yugong series] go teaching course 003-ide installation and basic use in July 2022
- SMT32H7系列DMA和DMAMUX的一点理解
- 测试老鸟浅谈unittest和pytest的区别
- An article takes you into the world of cookies, sessions, and tokens
- Using request headers to develop multi terminal applications
- Analysis of eventbus source code
- Jenkins pipeline method (function) definition and call
猜你喜欢

Introduction Guide to stereo vision (6): level constraints and polar correction of fusiello method

一篇文章带你走进cookie,session,Token的世界

信息与熵,你想知道的都在这里了

Android 隐私沙盒开发者预览版 3: 隐私安全和个性化体验全都要

An article takes you into the world of cookies, sessions, and tokens

22-07-04 Xi'an Shanghao housing project experience summary (01)

Applet (global data sharing)
![Introduction Guide to stereo vision (4): DLT direct linear transformation of camera calibration [recommended collection]](/img/ed/0483c529db2af5b16b18e43713d1d8.jpg)
Introduction Guide to stereo vision (4): DLT direct linear transformation of camera calibration [recommended collection]

c语言指针深入理解

Wxss template syntax
随机推荐
Cloud computing technology hotspot
Luo Gu p3177 tree coloring [deeply understand the cycle sequence of knapsack on tree]
Unity skframework framework (XXIII), minimap small map tool
Unity skframework framework (XXII), runtime console runtime debugging tool
干货整理!ERP在制造业的发展趋势如何,看这一篇就够了
[reading notes] Figure comparative learning gnn+cl
Applet (global data sharing)
Lepton 无损压缩原理及性能分析
Ministry of transport and Ministry of Education: widely carry out water traffic safety publicity and drowning prevention safety reminders
[team PK competition] the task of this week has been opened | question answering challenge to consolidate the knowledge of commodity details
Unity skframework framework (24), avatar controller third person control
Applet customization component
Understanding rotation matrix R from the perspective of base transformation
Applet (use of NPM package)
Rebuild my 3D world [open source] [serialization-1]
Talking about label smoothing technology
Blogger article navigation (classified, real-time update, permanent top)
[technical school] spatial accuracy of binocular stereo vision system: accurate quantitative analysis
[code practice] [stereo matching series] Classic ad census: (4) cross domain cost aggregation
OpenGL - Coordinate Systems