vue中$confirm弹出时就直接走then方法了
项目中遇到这样的情况:confirm框一弹出来就立马执行了then方法中的代码,不符合业务逻辑代码如下:this.$confirm('此操作将永久删除该文件, 是否继续?', '提示', {confirmButtonText: '确定',cancelButtonText: '取消',type: 'warning'}).then(this.$message({type: '
·
项目中遇到这样的情况: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(){})
```
更多推荐
已为社区贡献8条内容
所有评论(0)