微信小程序实现监听页面返回保存页面数据

发布时间:2024年01月19日
因为使用监听滑动的时候根部左滑还是监听不到退而求其次

该方法会在返回后的页面弹窗

  onUnload() {
    // console.log("VisitDetail onUnload")
    if (this.pagesList.length > 2 && this.detail.status === 2) {
      if (this.pagesList[this.pagesList.length - 2] == '前一个页面路径') {
        const that = this
        uni.showModal({
          title: '提示',
          content: '是否保存已填写数据',
          success: function (res) {
            if (res.confirm) {
             // 调取保存的接口
            }
          }
        });
      }
    }
  },
文章来源:https://blog.csdn.net/LRQQHM/article/details/135695717
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。