博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
小程序实现循环list但是最后的item没有分割线。
阅读量:4887 次
发布时间:2019-06-11

本文共 438 字,大约阅读时间需要 1 分钟。

实现上述功能,针对症状的item最后☝️没有分割线,

首先声明一点,小程序不支持 CSS3里面的nth-child()选择器。

数据结构如下:

item.indications:[
{ id: "K29.501", name: "慢性胃炎", type: "EntityTypeDisease" },
{ id: "腹痛1", name: "腹痛1", type: "EntityTypeSymptom" },
{ id: "腹痛2", name: "腹痛2", type: "EntityTypeSymptom" }
]
type=='EntityTypeSymptom'为症状的json,所以,循环的时候需要增加判断,最后需要判断长度-1的时候去掉分割线。
具体代码实现如下

 注意:截图代码有误:index==item.indications.length-1;

转载于:https://www.cnblogs.com/zhouqiaoyun/p/8625347.html

你可能感兴趣的文章
Easyui,界面1
查看>>
技术与业务的抉择————论程序员的“瓶颈”问题
查看>>
codevs1011 数的计算 2001年NOIP全国联赛普及组
查看>>
内置函数
查看>>
一个ListView怎么展示两种样式
查看>>
nmon性能分析工具(生成图表)
查看>>
mac上安装chromedriver
查看>>
jzoj1158-荒岛野人【扩欧,gcd,同余方程】
查看>>
[HTML 5] Styling with ARIA
查看>>
[D3] Creating a D3 Force Layout in React
查看>>
[AngularJS] New in Angular 1.3 - Performance Boost with debugInfoEnabled
查看>>
django进阶
查看>>
Longest Consecutive Sequence leetcode java
查看>>
P1816 忠诚
查看>>
14:Challenge 7(map大法好)
查看>>
1010. 邮寄包裹
查看>>
HDU 1394 (逆序数) Minimum Inversion Number
查看>>
UVa 12299 线段树 单点更新 RMQ with Shifts
查看>>
DSFORM
查看>>
IntelliJ+Maven+Spring+Tomcat项目搭建(MAC)
查看>>