下拉刷新在真机无法使用
下拉刷新在开发者工具中测试一点问题都没有,但是上传代码了,到手机ios上就是刷新不了,请问可能是哪里出错了?
已经在windows里面开了"enablePullDownRefresh":true
onPullDownRefresh: function () {
console.log(‘下拉’);
var that = this
wx.request({
url: ‘https://xxxxxxxxxxxxx’,
data: {},
header: {
‘Content-Type’: ‘application/json’
},
success: function (res) {
//console.log(res.data)
that.setData({
newsList: res.data
})
}
}),
},