分享一下我使用的上拉刷新的Demo;
其他的涉及不到? 以下代碼到j(luò)s就可以,將代碼寫到j(luò)s中Page里面
//下拉刷新
onPullDownRefresh: function () { //下拉刷新
wx.showToast({
title: '加載中',
icon: 'loading',
duration: 400
});
console.log('--------下拉刷新-------')
wx.showNavigationBarLoading() //在標(biāo)題欄中顯示加載
//這里是你請假刷新的地址 請求的地址。和你Onload 里面wx.request請求一樣 粘貼過來就行
wx.request({
url: ''
method: '',
data: {},
header: {
'Accept': 'application/json'
},
success: function(res) {
}
that.setData({studate:res.data.data});
//that.data.items = res.data
},
complete: function() {
// complete
wx.hideNavigationBarLoading() //完成停止加載
wx.stopPullDownRefresh() //停止下拉刷新
}
})
},