“.finally” 通过方括号表示法调用

huangapple go评论61阅读模式
英文:

Calling .finally via bracket notation

问题

在处理遗留代码时,我偶然发现了这样的代码:

this.User.updateRole(params)
    .then(this._onUserDismissingSetSuccess(), this.$alert.error)
    ["finally"](function () {
        this.isSendingData = false;
    });

以及其他一些带有 ["finally"] 的情况。

这让我感到困惑:这是什么意思,为什么不用 .finally()?是某种模式、技巧还是其他什么?

英文:

Working with legacy code, I stumbled upon such code:

this.User.updateRole(params)
    .then(this._onUserDismissingSetSuccess(), this.$alert.error)
    ["finally"](function () {
        this.isSendingData = false;
    });

and some other occasions with ["finally"].

Which made me scratch my head: what's the deal, why not .finally()? Is it some pattern, some trick or what?

答案1

得分: 2

这一定是非常老的代码(或者针对非常老的浏览器的代码)。在ES3中,不支持使用finally catch这样的关键词与点属性访问语法。您必须在对象文字中引用这些名称,并在访问这些属性时使用括号语法。

英文:

This must be really old code (or, code targeting really old browsers). Using keywords such as finally or catch with dot property access syntax was not supported in ES3. You had to quote these names in object literals and use bracket syntax when accessing these properties.

huangapple
  • 本文由 发表于 2023年5月29日 18:58:11
  • 转载请务必保留本文链接:https://go.coder-hub.com/76356747.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定