欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

防抖异步模板

程序员文章站 2024-01-28 10:38:58
...
import axios from 'axios'
import _ from 'lodash'

methods:{
            login:_.debounce(async function(){
                try{
                    const ret=await axios.get('/api/session')
                }catch(err){
                    const {status}=err.response
                    switch(status){
                        case 404 :
                        this.loginMessage='登录失败,请重试!'
                            break;
                    }
                }
            },500)
        }