美文网首页
vue路由切换时取消之前的所有请求2018-10-26

vue路由切换时取消之前的所有请求2018-10-26

作者: Aurora_80ac | 来源:发表于2018-10-26 09:43 被阅读0次

    在main.js文件里

    import router from 'router/';

    import Vue from 'vue';

    Vue.Cancel = [];

    router.beforeEach((to, from, next) => {

        while (Vue.Cancel.length > 0) {

            Vue.Cancel.shift()('cancel');

        }

        next();

    })

    相关文章

      网友评论

          本文标题:vue路由切换时取消之前的所有请求2018-10-26

          本文链接:https://www.haomeiwen.com/subject/sxqktqtx.html