Error in v-on handler (Promise/async): "[object Object]"或(请求接口失败时拿不到返回的数据)

控制台报错信息

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

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);
    }

你可能感兴趣的:(Error in v-on handler (Promise/async): "[object Object]"或(请求接口失败时拿不到返回的数据))