微信小程序刷新页面

平时作小程序开发时候会遇到一些刷新页面的问题,下面就一起来看一下。

因为小程序本身不存在刷新页面,
所以大家在进行删除、重命名、调取后台数据时,想实现页面的重新加载,
就要去执行下onLoad函数重新渲染。

   已删除为例
 //删除
  delete:function(e){
    var that=this;
    var id = e.currentTarget.dataset.id // 当前点击的id
    wx.showModal({  // 提示框
      title: '提示',
      content: '确定删除吗',
      success:function(res){
        if(res.confirm){
          myConsult.getDelete(id, (res) => {
            console.log(res)
            if(res.code==201){
              that.setData({ pageIndex: 1, doctorArr: [] });//   重点
              that.onLoad()//重点   重新执行下onLoad去获取当前的数据
            }
          });
        }
      }
    });
  }

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