android下拉刷新可以,模拟器也可以,只有IOS真机不好使。配置属性为
“enablePullDownRefresh”: true ,那个true也是布尔值,最开始写成了字符串,但是更改后也不好使,
页面中没有scroll-view。
"navigationBarTitleText": "列表",
"onReachBottomDistance":20,
"backgroundTextStyle": "dark",
"enablePullDownRefresh": true
onPullDownRefresh: function () {
wx.showNavigationBarLoading();
console.log("下拉刷新");
this.getPatients();
},
iphone6(微信6.6.0) iphone6plus(微信6.6.0) iphone8(微信6.6.0)开发者工具版本(v1.01.1712150)
“navigationBarTitleText”: “列表”,
“onReachBottomDistance”:20,
“backgroundTextStyle”: “dark”,
“enablePullDownRefresh”: true
onPullDownRefresh: function () {
wx.showNavigationBarLoading();
console.log(“下拉刷新”);
this.getPatients();
},
iphone6(微信6.6.0) iphone6plus(微信6.6.0) iphone8(微信6.6.0)开发者工具版本(v1.01.1712150)