Vue中監聽窗口關閉事件並在窗口關閉前發送請求

Vue中監聽窗口關閉事件並在窗口關閉前發送請求,代碼以下:ios

mounted() {
      window.addEventListener('beforeunload', e => this.beforeunloadHandler(e))
      window.addEventListener('unload', e => this.unloadHandler(e))
    },
    destroyed() {
      window.removeEventListener('beforeunload', e => this.beforeunloadHandler(e))
      window.removeEventListener('unload', e => this.unloadHandler(e))
    },
    methods: {
      beforeunloadHandler(){
        this._beforeUnload_time=new Date().getTime();
      },
      unloadHandler(e){
        this._gap_time=new Date().getTime()-this._beforeUnload_time;
        debugger
        //判斷是窗口關閉仍是刷新
        if(this._gap_time<=5){
          //若是是登陸狀態,關閉窗口前,移除用戶
          if(!this.showLoginButton){
            $.ajax({
              url: '/pictureweb/user/remove',
              type: 'get',
              async:false, //或false,是否異步

            })
          }
        }
      },
}

window.beforeunload事件在window.unload事件以前執行。同時注意ajax請求方式必須爲同步請求,因此不能使用axios,由於axios不能執行同步請求。web

分享一些技術學習視頻資料:https://pan.baidu.com/s/13dbR69NLIEyP1tQyRTl4xwajax

相關文章
相關標籤/搜索