3812人加入学习
(19人评价)
微信小程序-贪吃蛇

制作完成于2019-10-01,基于微信开发者工具 1.02.1909292

价格 免费
<view wx:for="{{books}}">
<text>{{item.name}}</text>
<text>{{item.author}}</text>
<text>{{item.num}}</text>
</view>
 
     books:[{
      name:"三国演义",
      author:"ooo",
      num:"01",
     },
       {
         name: "红楼梦",
         author: "lll",
         num: "02",
       },
       {
         name:"西游记",
         author:"mmmm",
         num:"03",
       }
     ]
  },
 
 
[展开全文]