[转] vue异步处理错误

Vue.prototype.$await = async function(action) {
    try {
        await action();
    } catch (err) {
        // 这里是你处理错误的逻辑
        console.log("Cought Error: ", err);
    }
};
doSomething(...args) {
    this.$await(async () => {
        await asyncDealWith(...args);
    });
}

 

posted @ 2019-04-13 14:04  {前端开发}  阅读(405)  评论(0编辑  收藏  举报