小程序总结(不断更新)

xml

<!--wxml-->
<view wx:for="{{array}}"> {{item}} </view>
// page.js Page({ data: { array: [1, 2, 3, 4, 5] } })

 

事件绑定

<view bindtap=onbind>
    我是事件2
    <view catchtap=onBind>我是事件1</view>
</view>

 onBind: function (event) {
    console.log("事件1执行了")
  },
  onbind: function (event) {
    console.log("事件2执行了")
  }

 

小程序总结(不断更新)