小程序wxml数组的循环赋值

在三个swiper页面中分别显示不同的页面名称和页面内容。一开始想用两个数组循环遍历,实在菜鸟,不会。只好放在一个数组里面。

tabList: [{

      "id": 1,

      "name": 'tab1',

      ilist: [{

        "id": 11,

        "title": "第一个标题",

        "content": "第一个内容"

      }, {

        "id": 12,

        "title": "第一个标题",

        "content": "第二个内容"

      }]

    }, {

      "id": 2,

      "name": 'tab2',

      ilist: [{

        "id": 21,

        "title": "第二个标题",

        "content": "第一个内容"

      }, {

        "id": 22,

        "title": "第二个标题",

        "content": "第二个内容"

      }]

    }, {

      "id": 3,

      "name": 'tab3',

      ilist: [{

        "id": 31,

        "title": "第三个标题",

        "content": "第一个内容"

      }, {

        "id": 32,

        "title": "第三个标题",

        "content": "第二个内容"

      }]

    }],

    {{item.name}}

     

       

          页面内容#{{ilist.id}}:{{ilist.content}}%

         

         

       

     

   

 

你可能感兴趣的:(小程序wxml数组的循环赋值)