91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Vue中路由怎么切換終止異步請求

發布時間:2021-08-25 10:52:57 來源:億速云 閱讀:176 作者:chen 欄目:編程語言

本篇內容主要講解“Vue中路由怎么切換終止異步請求”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Vue中路由怎么切換終止異步請求”吧!


問題:

SPA模式開發當中,比如VUE,當前路由切換的時候如何終止正在發生的異步請求呢。

結果:

假如請求超時并且有設定超時時間。有一堆的異步請求在執行,當用戶切換到另一個頁面,這些請求還未終止,并且當服務器響應之后,反饋的結果不是當前頁面所期待的。最終會誤導用戶造成一些不必要的結果。也給web造成性能問題。

解決方案:

把執行的請求存入隊列,當路由切換的時候終止隊列里的異步請求。

首先搞一棵樹來存儲請求隊列

import Vue from "vue";
import Vuex from "vuex";
Vue.use(Vuex);
let store = new Vuex.Store({
  state: {
    requests: [],
  },
});

new Vue({
  el: "#app",
  router: router,
  render: (h) => h(App),
  store,
});

利用ajax請求和終止

var xhr = $.ajax({
  type: "POST",
  url: "xxxsx",
  data: "",
  success: function () {
    alert("ok");
  },
});
//xhr.abort()  終止請求
this.$store.state.requests.push(xhr);

利用superagent請求和終止

const request = require('superagent')
var xhr = request('post','/api/xxxx/xxxx')
xhr.send(data)
//xhr.query(data) //get 傳參
xhr.end((err,res)=>{
    ...todo...
})
//xhr.abort() 終止請求
this.$store.state.requests.push(xhr)

利用axios請求

import axios from "axios";
var CancelToken = axios.CancelToken;
var source = CancelToken.source();
axios
  .get("/api/xxxxx/xxxxx", {
    cancelToken: source.token,
  })
  .catch(function (thrown) {
    if (axios.isCancel(thrown)) {
      console.log("Request canceled", thrown.message);
    } else {
      // 處理錯誤
    }
  });

// 取消請求(message 參數是可選的)
//source.cancel('Operation canceled by the user.');

this.$store.state.requests.push(source);

利用vue-resource請求

import Vue from "vue";
import req from "vue-resource";
Vue.use(req);

this.$http
  .get("/someUrl", {
    before(request) {
      this.$store.state.requests.push(request);
      //request.abort(); 終止請求
    },
  })
  .then(
    (response) => {
      // success callback
    },
    (response) => {
      // error callback
    }
  );

利用fetch請求

fetch貌似無法監控讀取進度和終端請求,他沒有 timeout 機制,沒有 progress 提示,但是可以利用 Promise 來實現終止

var _fetch = (function (fetch) {
  return function (url, options) {
    var abort = null;
    var abort_promise = new Promise((resolve, reject) => {
      abort = () => {
        reject("abort.");
        console.info("abort done.");
      };
    });
    var promise = Promise.race([fetch(url, options), abort_promise]);
    promise.abort = abort;
    return promise;
  };
})(fetch);

var xhr = _fetch("/api/xxx/xxxx", { methods: "POST", body: data });
xhr.then(
  function (res) {
    console.log("response:", res);
  },
  function (e) {
    console.log("error:", e);
  }
);
xhr.abort(); //終止

this.$store.state.requests.push(xhr);

那么知道如何終止請求,然后也存儲了請求實例,剩下的只要監聽路由就行了

let router = new Router({....})
//每次路由改變之前終止所有的請求實例
router.beforeEach(function (to, from, next) {
    this.$store.state.requests.forEach(xhr=>xhr.abort()) //終止所有的請求實例
    this.$store.state.requests =[] //執行完清空,等待下一次的頁面的請求裝載
    next()
})

這種只是假設,自然請求完成之后最好,還是手動釋放樹的請求示例。例如ajax請求完成之后在complite里面splice store里面的實例。

到此,相信大家對“Vue中路由怎么切換終止異步請求”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

vue
AI

铁岭市| 昭通市| 台北县| 会同县| 峡江县| 白山市| 攀枝花市| 佛坪县| 韶关市| 尉氏县| 宁国市| 清镇市| 正镶白旗| 吉隆县| 旅游| 汉中市| 米脂县| 丽江市| 庆城县| 博乐市| 体育| 萨迦县| 黄龙县| 民丰县| 霍城县| 黔南| 巧家县| 永修县| 青河县| 越西县| 南宁市| 阿拉善盟| 庆城县| 东阳市| 隆德县| 南岸区| 台中市| 绥滨县| 六枝特区| 黄浦区| 都昌县|