List rendering of WeChat applet example introduction

WBOY
Release: 2022-11-10 17:43:33
forward
2392 people have browsed it

This article brings you relevant knowledge aboutWeChat Mini Program, which mainly introduces the relevant content about list rendering. Let’s take a look at it together. I hope it will be helpful to everyone.

List rendering of WeChat applet example introduction

【Related learning recommendations:小program learning tutorial

wx:for

Through wx:for You can loop to render repeated component structures based on the specified array. The syntax example is as follows:

 索引是:{{index}} 当前项是:{{item}} 
Copy after login
Copy after login

By default, the index of the current loop item is represented by index; the current loop item is represented by item hacker.wxml Define a for loop to access the array

 索引是:{{index}} 当前项是:{{item}} 
Copy after login
Copy after login

hacker.js Define an array

Page({ data:{ arr1:['a','b','c'] } })
Copy after login
Copy after login

The running results are as follows:

List rendering of WeChat applet example introduction

Manually specify the index and variable name of the current item

Use wx:for-index A variable name that specifies the index of the current loop item Use wx:for-item to specify the variable name of the current item The sample code is as follows:

 索引是:{{idx}} 当前项是:{{itemName}} 
Copy after login
Copy after login

hacker.wxml

 索引是:{{idx}} 当前项是:{{itemName}} 
Copy after login
Copy after login

hacker.js

Page({ data:{ arr1:['a','b','c'] } })
Copy after login
Copy after login

The running results are as follows:List rendering of WeChat applet example introduction

wx:key usage

Similar to :key in Vue list rendering, when the applet implements list rendering, it is also recommended to specify a unique key value for the rendered list items to improve rendering efficiency. The sample code is as follows: hacker.wxml

{{item.name}}
Copy after login

hacker.js

Page({ data:{ userList:[ {id: 1,name: 'hacker'}, {id: 2,name: 'meng'}, {id: 3,name: 'yuan'} ] } })
Copy after login

The running results are as follows:List rendering of WeChat applet example introduction[Related learning recommendations:小program learning tutorial]

The above is the detailed content of List rendering of WeChat applet example introduction. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:juejin.im
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!