Error in v-on handler (Promise/a

2021-03-12  本文已影响0人  剑圣_盖小聂
控制台报错信息

不需要处理错误逻辑时,也不影响代码执行,但是控制台报一大片红也很难受。
出现场景:

const response=await this.util.getData(apiConfig.commomCode,{});

处理方法:我们需要进行错误捕获,即catch捕获

try{
        const response=await this.util.postData(apiConfig.creat,req)
    }catch(e){
            console.log(e.message);
    }
上一篇 下一篇

猜你喜欢

热点阅读