This article example shares the specific code of the applet to implement a simple list function for your reference. The specific content is as follows List component for As long as you add an array to the component, you can implement the list component wxml code <block wx:for="{{yetinglist}}"> <view class='waibian' bindtap="readDetail" data-id="{{item.title}}"> <image src="{{item.smallLogo}}" class='leftimagecss'></image> <view class='righttextcss'> <text class='titlecss'>【Night Listening】{{item.title}}</text> <text class='nicenamecss'>{{item.nickname}}</text> <view class='timecss'> <text class='playcunnter'>Play times:{{item.playtimes}}</text> <text class='time'>Collection:{{item.likes}}</text> </view> </view> </view> </block> index.js code Page({ data: { yetinglist:[], } //List click event readDetail: function(e) { //Jump to other pages wx.navigateTo({ url: '../twoVC/twovc?id='+e.currentTarget.dataset.id }) // console.log(e.currentTarget.dataset.id); }, //Loading a page is called once onLoad: function () { var that =this; //Network parsing wx.request({ url:'http://mobile.ximalaya.com/mobile/v1/album/track/ts-1499312754612?albumId=260769&device=iPhone&isAsc=true&pageId=1&pageSize=20&', success:function(res) { console.log(res.data.data.list) that.setData({ yetinglist:res.data.data.list, }) } }) } }) wxxml code .waibian{ display: -webkit-flex; /* Safari */ -webkit-justify-content: initial; /* Safari 6.1+ */ display: flex; justify-content: initial; } .leftimagecss{ margin-left: 5px; margin-top: 5px; margin-bottom: 5px; width:40%; height:110px; border-radius:10px; } .righttextcss{ margin-left: 10px; height: 110px; width: 70%; flex-wrap: wrap; display: flex; align-content: Space-around; } .titlecss{ height: 40px; width: 100%; margin-top: 5px; font-size:medium; text-overflow: -o-ellipsis-lastline; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; } .nicenamecss{ width: 100%; height: 30px; font-size:small; -webkit-text-fill-color: lightgray; } .timecss{ height: 20px; width: 100%; display: flex; justify-content: space-between; } .playcunnter{ font-size:small; -webkit-text-fill-color: blueviolet; } .time{ margin-right: 10px; font-size:small; -webkit-text-fill-color: lawngreen; } The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
>>: Solution to the problem that a Linux modification of MySQL configuration does not take effect
Because we were going to build a website, in addi...
<br />Use of line break tag<br>The lin...
1. System Configuration 1. Turn off sudo password...
Let’s look at an example first Copy code The code ...
Table of contents 1. Related binlog configuration...
Preface In MySQL, we can use the EXPLAIN command ...
Table of contents 1. Knowledge description of the...
1. Linux installation (root user operation) 1. In...
Preface The solution to the problem of not being ...
1. Before configuring the IP address, first use i...
If you want to exit bash, there are two options: ...
Hello everyone, I wonder if you have the same con...
The google.html interface is as shown in the figur...
Linux uses files as the basis to manage the devic...
Compared with FTP, SSH-based sftp service has bet...