码迷,mamicode.com
首页 > 其他好文 > 详细

vue_shop删除功能报错——_this3.$confirm(...).cath is not a function

时间:2021-05-24 05:48:24      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:img   wait   为什么   src   http   type   const   inf   alt   

报错提示

技术图片

报错代码

在有删除功能的提示框中都会有这样的报错:

      const confirmResult = await this.$confirm(
        ‘此操作将删除xx, 是否继续?‘,
        ‘提示‘,
        {
          confirmButtonText: ‘确定‘,
          cancelButtonText: ‘取消‘,
          type: ‘warning‘
        }
      ).cath(err => err)

解决

      const confirmResult = await this.$confirm(
        ‘此操作将删除xx, 是否继续?‘,
        ‘提示‘,
        {
          confirmButtonText: ‘确定‘,
          cancelButtonText: ‘取消‘,
          type: ‘warning‘
        }
      )
        .catch(err => err)
        .then(data => data)

添加了 .then 之后就可以了 ??
也不知道为什么

vue_shop删除功能报错——_this3.$confirm(...).cath is not a function

标签:img   wait   为什么   src   http   type   const   inf   alt   

原文地址:https://www.cnblogs.com/Monster-su/p/14756514.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!