js 数据书写 ``` ~~~ Page({ data: { list:['111','222','3333','444'], } }) ``` wxml 页面调用 ~~~ <view wx:for="{{[zero, 1, 2, 3, 4]}}"> {{item}} </view> ~~~