码迷,mamicode.com
首页 > 微信 > 详细

微信小程序多层嵌套循环,二级数组遍历

时间:2017-03-22 13:18:29      阅读:3183      评论:0      收藏:0      [点我收藏+]

标签:dex   多层嵌套   over   小程序   for   code   group   logs   angularjs   

小程序中的遍历循环类似于angularJS的遍历。

二级数组遍历有一个坑。二级遍历wx:for循环的时候,需要注意。(代码如下)

 

JS代码:

data: {
        groups: [
            [
                {
                    title: ‘狼图腾‘,
                    cover: ‘../../img/mineBG.png‘
                },
                 {
                    title: ‘狼图腾‘,
                    cover: ‘../../img/mineBG.png‘
                },
            ],
            [
                {
                    title: ‘狼图腾‘,
                    cover: ‘../../img/mineBG.png‘
                },
                
            ],
            [
                {
                    title: ‘狼图腾‘,
                    cover: ‘../../img/mineBG.png‘
                },
               
            ]
        ],
    },

 

 

遍历出不同的数组,然后渲染不同组的cell

<!--一共三组-->
<view class="group" wx:for="{{groups}}"  wx:for-index="groupindex">

  <!--组头-->
  <view class="group-header">
    <view class="group-header-left">{{}}</view>
    <view class="group-header-right">{{}}</view>
  </view>



MARK:
二级循环的时候,wx:for="item",这种写法是错误的。

<!--cell--> <view class="group-cell" wx:for="{{groups[groupindex]}}" wx:for-item="cell" wx:for-index="cellindex"> <!--<image class=‘group-cell-image‘ src="{{item.cover}}"></image>--> <image class=‘group-cell-image‘ src="../../img/mineBG.png"></image> <view class=‘group-cell-title‘>title{{cell.title}}</view> </view> <!--footer--> <view class="group-footer">{{group.footer}}</view> </view>

 

微信小程序多层嵌套循环,二级数组遍历

标签:dex   多层嵌套   over   小程序   for   code   group   logs   angularjs   

原文地址:http://www.cnblogs.com/handsomeBoys/p/6599062.html

(2)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!