欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

vue中$confirm弹出时就直接走then方法了

程序员文章站 2022-05-31 18:05:17
...

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

vue中$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(){})
      ```