美文网首页
Promise then连用

Promise then连用

作者: 夜色001 | 来源:发表于2020-09-17 10:58 被阅读0次

1、Promise then连用时,上一个then的返回值是下一个then的输入

通常用return,否则下一个then的参数为空。
Promise连用的写法,可以避免调用接口多层嵌套,显得更加美观

2、this的指代

this通常谁调用指代谁,为了避免不必要的混乱,可以全局设置this,以指向当前控件

handleDelete(row) {
      const _this = this
      this.$confirm('是否确认删除名称为"' + row.name + '"的数据项?', '警告', {
        confirmButtonText: '确定',
        cancelButtonText: '取消',
        type: 'warning'
      }).then(function() {
        return _this.deleteMenu({ menuId: row.menuId })
      }).then((resp) => {
        if (resp.code == 0) {
          this.getList()
          this.msgSuccess('删除成功')
        } else {
          this.msgError(resp.msg)
        }
      }).catch(function() {
      })
    }

相关文章

  • Promise then连用

    1、Promise then连用时,上一个then的返回值是下一个then的输入 通常用return,否则下一个t...

  • async await用法

    1.要执行相关联的请求时,就会按顺序执行 2.请求不相关联,获取最后请求结果 3.非请求写法 要与promise连用

  • runloop02

    timer连用

  • 新编日语1-6

    1.动词基本形和连用形 动词基本形:动词的原形 动词连用形:动词后接助动词ます ます形:动词连用形+ます(礼貌肯定...

  • Promise原理及实现

    Promise标准 Promise 规范有很多,如Promise/A,Promise/B,Promise/D 以及...

  • 22. 形容词的连用形

    Ⅰ类形容词和Ⅱ类形容词都各有两种连用形,分别被称为第一连用形和第二连用形。 Ⅰ类形容词的第一连用形 Ⅰ类形容词的第...

  • promise相关

    promise promise.race promise.finally promise.catch

  • select的常见用法

    原文:《go并发编程实战》 select 常与匿名函数连用,以便不阻塞主程序。 select 常与for循环连用,...

  • 2021-12-27Promise自身方法

    Promise.all()Promise.allSettled()Promise.any()Promise.rac...

  • Promise,async,await笔记

    Promise,async,await笔记 Promise 创建promise对象 Promise对象构造方法传入...

网友评论

      本文标题:Promise then连用

      本文链接:https://www.haomeiwen.com/subject/hahlyktx.html