微信小程序json数据循环展示实例分享(微信小程序解析json数据)

网友投稿 916 2022-10-05

微信小程序json数据循环展示实例分享(微信小程序解析json数据)

微信小程序json数据循环展示实例分享(微信小程序解析json数据)

首先这是原始数据,json的数组。 这篇文章主要介绍了微信小程序通过api接口将json数据展现到小程序示例,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧

html部分

列表测试 {{item.id}}、{{item.title}} 单价{{item.unitprice}}元/m² {{item.city}} {{cell.tags}} -

wx:for="{{list_data}}"用来循环数组,而list_data即为数组名wx:for-item="cell" 即用来定义一个循环过程中每个元素的变量的

谨记:wx:for是循环数组,wx:for-item即给列表赋别名

js部分

json格式

{ "imgListData": [ { "id": "1", "title": "标题描述", "content": "内容描述 ", "city": "详细地址", "adrs": "上海", "room": "楼房描述", "imgUrl": "图片地址", "dataTimes": "时间", "peo": "姓名", "tel": "手机号", "pho": "照片地址", "money": "价格", "unitprice": "单价", "tag": [ { "tags": "标签一" },{ "tags": "标签七" },{ "tags": "标签八" } ] }, { "id": "2", "title": "标题描述", "content": "内容描述 ", "city": "详细地址", "adrs": "上海", "room": "楼房描述", "imgUrl": "图片地址", "dataTimes": "时间", "peo": "姓名", "tel": "手机号", "pho": "照片地址", "money": "价格", "unitprice": "单价", "tag": [ { "tags": "标签二" },{ "tags": "标签六" },{ "tags": "标签七" } ] } ]}-

css 这里样式用了flex,详细了解: http://static.vgee-/static/index.html

.mflex {display:flex;}.list-head{text-align: center;font-size:32rpx;}.list-li{height:166rpx;padding:40rpx 30rpx;border-bottom:2rpx solid #e4e7ec;flex-wrap:wrap;justify-content:space-between;flex-direction:column;align-items:center;}.list-img{width:210rpx;height:166rpx;}.list-img image{display: block;width:210rpx;height:166rpx;}.list-tit,.list-adr,.list-tag,.list-con{width:calc( 100% - 240rpx );}.list-tit{font-size:30rpx;color:#1c2627;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;display:inline-block;}.list-con{font-size:24rpx;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}.list-adr{font-size:22rpx;color:#555;text-overflow:ellipsis;white-space:nowrap;overflow:hidden; }.list-tag{font-size:20rpx;}.list-tag text{background:#f5ecdf;color:#ff9d00;padding:5rpx;margin-right:10rpx;}.list-money{font-size:30rpx;color:red;flex:1;text-align: right;font-weight:bold;}.dizhi{flex:2;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;}.list-tag text{color:#fff;}.list-tag .tag_0{background:#c3dbf3;}.list-tag .tag_1{background:#fbd08f}.list-tag .tag_2{background:#fdd2d5;}.list-tag .tag_3{background:#add2a5;}-

运行结果

程序员必备接口测试调试工具:立即使用Apipost = Postman + Swagger + Mock + Jmeter Api设计、调试、文档、自动化测试工具 后端、前端、测试,同时在线协作,内容实时同步

相关文章:

微信小程序通过api接口将json数据展现到小程序示例

微信小程序 for 循环详解

相关视频:

App.json全局配置文件详解-微信小程序开发视频教程

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:bzoj 4604 The kth maximum number
下一篇:NOIP2017 提高 luogu 3953 逛公园
相关文章

 发表评论

暂时没有评论,来抢沙发吧~