下拉刷新,上拉触底(.js里自带)
<view>content值是{{cont}}</view> <button bindtap="add">+1</button>
data: {
cont:0
},
// 自增效果
add(){
this.setData({
cont:this.data.cont + 1
})
},
下拉刷新数字归0
onPullDownRefresh() { this.setData({ cont:0 }) },
停止下拉刷新效果 wx.stopPullDownRefresh()
onPullDownRefresh() { this.setData({ cont:0 }) wx.stopPullDownRefresh() },
上拉触底事件 onReachBottom()
onReachBottom() { console.log('chufale') },