防抖异步模板
程序员文章站
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)
}
上一篇: c语言中获取系统时间的方法