Home WeChat Applet Mini Program Development wx:for and wx:for-item small program development

wx:for and wx:for-item small program development

Jun 12, 2018 am 10:12 AM

This time I will bring you some precautions when developing wx:for and wx:for-item small programs. The following is a practical case. Let’s take a look.

wx:for="{{list}}" is used to loop through the array, and list is the array namewx:for-item="items" That is

used to define the variables of each element in a loop process. If it is a one-dimensional array, it is looped out as follows:

<view wx:for="{{list}}">
{{index}} {{item.name}}
</view>
Copy after login
Copy after login

In the above code, item is the alias of list.

If it is a two-dimensional or even multi-dimensional array, loop as follows:

<view wx:for="{{parentList}}">
{{item.id}}
<view wx:for="{{item.childList}}" wx:for-item="items">
{{items.name}}{{item.account}}
</view>
</view>
for (var i = 0 ; i < list.length; i++) {
var xxx = list[i];
}
Copy after login
Copy after login

is equivalent to

<view wx:for="{{list}}" wx:for-item="xxx"></view>
Copy after login
Copy after login

Remember: wx:for is a loop array, wx:for-item That is to assign an alias to the list

The following are some incorrect uses, please use them with caution:

1. Use wx:for-item directly, which will not loop out the list

<view wx:for-item="{{list}}">
{{index}} {{item.name}}
</view>
Copy after login
Copy after login

2. Use wx:for-item with caution in sub-loops

<view wx:for="{{parentList}}">
 {{item.id}}
 <view wx:for-item="{{item.childList}}" wx:for-item="items">
 {{items.name}}{{items.account}}
 </view>
Copy after login
Copy after login

The correct usage of wx:for and wx:for-item in WeChat applet

wx:for="{{ list}}" is used to loop the array, and list is the array name wx:for-item="items" which is used to define the variable of each element during the loop

If it is a one-dimensional array, Loop out as follows:

<view wx:for="{{list}}">
{{index}} {{item.name}}
</view>
Copy after login
Copy after login

In the above code, item is the alias of list.

If it is a two-dimensional or even multi-dimensional array, loop as follows:

<view wx:for="{{parentList}}">
{{item.id}}
<view wx:for="{{item.childList}}" wx:for-item="items">
{{items.name}}{{item.account}}
</view>
</view>
for (var i = 0 ; i < list.length; i++) {
var xxx = list[i];
}
Copy after login
Copy after login

is equivalent to

<view wx:for="{{list}}" wx:for-item="xxx"></view>
Copy after login
Copy after login

Remember: wx:for is a loop array, wx:for-item That is to assign an alias to the list

The following are some incorrect uses, please use them with caution:

1. Use wx:for-item directly, which will not loop out the list

<view wx:for-item="{{list}}">
{{index}} {{item.name}}
</view>
Copy after login
Copy after login

2. Use wx:for-item with caution in sub-loops

<view wx:for="{{parentList}}">
 {{item.id}}
 <view wx:for-item="{{item.childList}}" wx:for-item="items">
 {{items.name}}{{items.account}}
 </view>
Copy after login
Copy after login

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the PHP Chinese website!

Recommended reading:

Summary of adding getter setter to JS

##How to use webpack react antd scaffolding in actual projects

The above is the detailed content of wx:for and wx:for-item small program development. For more information, please follow other related articles on the PHP Chinese website!

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Will R.E.P.O. Have Crossplay?
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)