项目中遇到这样的情况:confirm框一弹出来就立马执行了then方法中的代码,不符合业务逻辑

在这里插入图片描述
代码如下:

this.$confirm('此操作将永久删除该文件, 是否继续?', '提示', {
          confirmButtonText: '确定',
          cancelButtonText: '取消',
          type: 'warning'
        }).then(
          this.$message({
            type: 'success',
            message: '删除成功!'
          })
        
      ).catch(function(){})
解决办法:then应该是个函数
this.$confirm('此操作将永久删除该文件, 是否继续?', '提示', {
          confirmButtonText: '确定',
          cancelButtonText: '取消',
          type: 'warning'
        }).then(() =>{
          this.$message({
            type: 'success',
            message: '删除成功!'
          })
        }
      ).catch(function(){})
      ```
Logo

前往低代码交流专区

更多推荐