for两层循环
发布于 7 年前 作者 yong30 10108 次浏览 来自 问答

teamInfos: [

      {

        sort: 1, name: ‘小张拍黄瓜’, outTotal: 50, inTotal: 50, total: 100,

        headImg: ‘…/…/img/touxiang.png’, tee: ‘蓝色’, teeImg: ‘…/…/img/t_black.png’,

        scores: [10, 2, 3, 4, 5, 6, 7, 8, 9, 50, 11, 2, 3, 4, 5, 6, 7, 8, 9, 50]

      },

      {

        sort: 2, name: ‘小张拍黄瓜’, outTotal: 50, inTotal: 50, total: 100,

        headImg: ‘…/…/img/touxiang.png’, tee: ‘蓝色’, teeImg: ‘…/…/img/t_black.png’,

        scores: [1, 20, 3, 4, 5, 6, 7, 8, 9, 50, 1, 22, 3, 4, 5, 6, 7, 8, 9, 50]

      },

      {

        sort: 3, name: ‘小张拍黄瓜’, outTotal: 50, inTotal: 50, total: 100,

        headImg: ‘…/…/img/touxiang.png’, tee: ‘蓝色’, teeImg: ‘…/…/img/t_black.png’,

        scores: [1, 2, 30, 4, 5, 6, 7, 8, 9, 50, 1, 2, 33, 4, 5, 6, 7, 8, 9, 50]

      }

    ]

请问,我该怎么才能循环到scores里面的内容啊

2 回复

里层再写个wx:for吧

wx:for="{{teamInfos[index].scores}}"

这个index是外层的

随便一写不知道可行不

两层循环,第一层循环 teamInfos , 第二层循环 item.scores 。

回到顶部