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执行了") }
生命周期
Component({ lifetimes: { attached: function() { // 在组件实例进入页面节点树时执行 }, detached: function() { // 在组件实例被从页面节点树移除时执行 }, }, // 以下是旧式的定义方式,可以保持对 <2.2.3 版本基础库的兼容 attached: function() { // 在组件实例进入页面节点树时执行 }, detached: function() { // 在组件实例被从页面节点树移除时执行 }, // ... })