当前位置:网站首页>小程序实现列表和详情页
小程序实现列表和详情页
2022-07-22 08:45:00 【叶常落】
想实现如下的功能:
使用列表展示数据、点击列表中的条目,跳转到详情页。
我目前掌握的做法是:
在列表元素中增加data-id属性,用来存放唯一标识,然后传递参数到详情页。
下面的官方文档解释:
https://developers.weixin.qq.com/miniprogram/dev/framework/view/wxml/event.html
每个列表元素要有一个可以进行定位的值,这里就是data-id
列表页
<!--pages/shici/shici.wxml-->
<mp-cells ext-class="my-cells" title="诗词列表">
<mp-cell bindtap="onClick" wx:for="{
{dataList}}" wx:key="_id" data-id="{
{item._id}}" value="{
{item.title}}" footer="{
{item.author}}"></mp-cell>
</mp-cells>
onClick:function(e){
let myId = e.currentTarget.dataset.id;
wx.navigateTo({
url: '/pages/shicidetail/shicidetail?id=' + myId,
})
}
onLoad: function (options) {
console.log(options)
let myId = options.id;
}
列表详情页
边栏推荐
- Gbase8s database set database object mode statement
- GBase8s数据库子查询中的 UNION
- 【Excle】生成guid和datetime导入测试数据到数据库
- 女嘉賓報名
- Applet sorted by an element of the structure (fishing_3)
- Simplify the complexity and talk about the abstraction of replication state machine system architecture
- Dr. water
- QT笔记——自定义数据类型
- shell脚本使用expect自动化交互登录远程主机进行批量关机
- A survey of network defense decision-making methods based on attack defense game
猜你喜欢
《微信小程序-进阶篇》Lin-ui组件库的安装与引入
QT笔记——自定义数据类型
QT notes - operation EXECL
QT notes - qudpsocket of network communication
qt5.12 + vs2019 无法定位程序输入点 于动态链接库
并发模型值Actor和CSP
"Review of software engineering in Wuhan University of technology" Chapter 7 | software testing
"Review of software engineering in Wuhan University of technology" Chapter 2 | software process model
Computer Graphics From Scratch - Chapter 4
QT notes - vs generating multiple exe files for a project
随机推荐
fcntl函数
「武汉理工大学 软件工程复习」第七章 | 软件测试
Verilog for loop (1)
QT notes - vs generating multiple exe files for a project
化繁为简,聊一聊复制状态机系统架构抽象
"Review of software engineering in Wuhan University of technology" Chapter 6 | coding specification
云原生(十) | Kubernetes篇之Kubernetes简介
QT notes - operation EXECL
go 并发编程之-工作池
QT exe is only allowed to run a single
「武汉理工大学 软件工程复习」第五章 | 软件体系结构
GBase8sUNION ALL 运算符
Unity textmeshpro namespace reference and component acquisition
QT notes - drag lines and movement of qtablewidget
"Review of software engineering in Wuhan University of technology" Chapter 2 | software process model
DistSQL 深度解析:打造动态化的分布式数据库
pm的报警告:“npm WARN config global --global, --local are deprecated
女嘉宾报名
43. 字符串相乘
路由协议是什么