<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",
}
]
},