Vue 执行 then 方法同时执行了 catch 方法

Vue 调动 Dialog 组件方法的时候执行 them 方法的同时也执行了 catch 方法;
排查后发现在 then 方法中执行的 code 发生了异常所导致的,

Dialog.confirm({
    title : title,
    message :
        '是否采用该段视频回放用作上传',
    confirmButtonText: '上传视频',
    cancelButtonText: '观看视频',
    closeOnClickOverlay: true,
}).then(() => { // 上传视频
    console.log('上传视频');
    this.onClickUpload(item);
}).catch(() => { // 观看视频
    console.log('观看视频');
    // this.onClickPlayback(item);
});

解决办法
仔细排查 then 方法代码块中的逻辑,哪里出现了异常,从而执行了 catch 中的方法;


以上便是此次分享的全部内容,希望能对大家有所帮助!

你可能感兴趣的:(Vue,vue.js,javascript)