利用axios中的 cancelToken实现防抖功能

 

<template>
   <input type="text" v-model="val">
<template>
 
<script>
import axios from "axios";
export default {
    name: 'hello',
    data() {
        return{
            val: '',
            canMsg: '请求终止',
    },
    methods: {
         cancelReq() {
            if (typeof this.source === 'function') {
                this.source(canMsg);
            }
        }
    },
    watch: {
        val(newVal) {          
            var that = this;
            this.cancelReq();
             
            axios.get('xxx', {             
                cancelToken: new axios.CancelToken(function(c) {
                    that.source = c;
                })
            }).then((res) => {
                ...
            }).catch((err) => {
                if (axios.isCancel(err)) {
                    // 返回取消请求信息
                    console.log('Rquest canceled', err.message);
                } else {
                    console.log(err);
                }
            })       
        }
    }
}
</script>

  引自:https://segmentfault.com/a/1190000016963943

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐