小程序下拉刷新没有响应

注意:当你发现你设置了所有改设置的后,下拉刷新还是不能使用的话就去找找你的代码是不是存在俩个下拉刷新的方法

json文件夹

{
  "enablePullDownRefresh": true,
  "backgroundTextStyle": "dark"
}

需要刷新的数据

/*
 * 小程序下拉刷新
 * 微信:fangkangfk
 * time:2018.9.12
 * author:咔咔
 * */
onPullDownRefresh: function () {
    var that = this;
    // wx.showNavigationBarLoading() //在标题栏中显示加载
    setTimeout(function () {
      
      wxb.Post('/api/automatic.Allinfo/getInfo', {

      }, function (data) {
        that.setData({
          companyList: data
        })
      });
      // complete
      // wx.hideNavigationBarLoading() //完成停止加载/
      wx.stopPullDownRefresh() //停止下拉刷新
    }, 1500);
  }, 

效果图

你可能感兴趣的:(小程序)