英文:
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.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论