当前位置:网站首页>wx.miniProgram.navigateTo在web-view中跳回小程序并传参
wx.miniProgram.navigateTo在web-view中跳回小程序并传参
2022-07-31 04:57:00 【weixin_43923808】
html方法要回到小程序页面:
h5页面
不传参:
wx.miniProgram.navigateTo({
url: '/pages/scenic/scenic_detail/scenic_detail'
})
传参:
wx.miniProgram.navigateTo({
url: '/pages/scenic/scenic_detail/scenic_detail?id='+id+'&title='+title
})
注: 要引入相关的js
<script type="text/javascript" src="https://res.wx.qq.com/open/js/jweixin-1.3.2.js"></script>
小程序原生页面接收传递的参数
onLoad: function (options) {
console.log(options);
this.title = options.title
var scenicId = options.id;
}
边栏推荐
- 【py脚本】批量二值化处理图像
- Error EPERM operation not permitted, mkdir 'Dsoftwarenodejsnode_cache_cacach Two solutions
- The Vue project connects to the MySQL database through node and implements addition, deletion, modification and query operations
- Three oj questions on leetcode
- visual studio 那些提高效率的快捷键,总结(不时更新)
- DVWA installation tutorial (understand what you don't understand · in detail)
- [debug highlights] Expected input batch_size (1) to match target batch_size (0)
- Doris学习笔记之监控
- [Linear Neural Network] softmax regression
- CentOS7 install MySQL graphic detailed tutorial
猜你喜欢
Unity resources management series: Unity framework how to resource management
Unity打灵狐者
【debug锦集】Expected input batch_size (1) to match target batch_size (0)
Open Source Smart Future | 2022 OpenAtom Global Open Source Summit OpenAtom openEuler sub-forum was successfully held
DVWA之SQL注入
ERP Production Operation Control Kingdee
PWN ROP
STM32 - DMA
mysql使用on duplicate key update批量更新数据
mysql uses on duplicate key update to update data in batches
随机推荐
sql statement - how to query data in another table based on the data in one table
【debug锦集】Expected input batch_size (1) to match target batch_size (0)
SQL injection of DVWA
Numpy中np.meshgrid的简单用法示例
unity2d game
SQL row-column conversion
ES 源码 API调用链路源码分析
SQL语句中对时间字段进行区间查询
Simple read operation of EasyExcel
PWN ROP
Go language study notes - dealing with timeout problems - Context usage | Go language from scratch
MySQL transaction isolation level, rounding
Industry landing presents new progress | 2022 OpenAtom Global Open Source Summit OpenAtom OpenHarmony sub-forum was successfully held
ERP Production Operation Control Kingdee
Reference code series_1. Hello World in various languages
产学研用 共建开源人才生态 | 2022开放原子全球开源峰会教育分论坛圆满召开
.NET-6.WinForm2.NanUI学习和总结
Open Source Database Innovation in the Digital Economy Era | 2022 Open Atom Global Open Source Summit Database Sub-Forum Successfully Held
unity2d小游戏
参考代码系列_1.各种语言的Hello World