2

我在我们的一个在线 AngularJS 应用程序中遇到了这段代码,我想知道这是做什么的。它与仅使用括号调用立即自调用函数不同吗?

(function() {

}).call(this); // What was in TFS

对比

(function() {

})(); // Are these the same?

调用一个比另一个有什么好处,还是仅仅是编码偏好?

4

1 回答 1

4

他们非常不同。第一个使用当前this是什么(在全局范围内,this是对全局对象的引用;在其他范围内,它可以是任何东西)。第二个将使用 default ,它是在松散模式但在严格模式下this对全局对象的引用。undefined

无偿的例子:-):

console.log("At global scope:");
(function() {
  console.log(this === window); // true
}).call(this); // What was in TFS
(function() {
  console.log(this === window); // true
})();
(function() {
  "use strict";
  console.log(this === window); // false (this === undefined)
})();

console.log("Not at global scope:");
(function() {
  (function() {
    console.log(this === window); // false
  }).call(this); // What was in TFS
  (function() {
    console.log(this === window); // true
  })();
}).call({});// Using something other than the default
.as-console-wrapper {
  max-height: 100% !important;
}

于 2017-11-14T16:10:56.363 回答