前一段时间我在this网站上找到了关于闭包的半个不错的解释。他们向我们展示了以下工厂功能,以查看工作结束:
var car;
function carFactory(kind) {
var wheelCount, start;
wheelCount = 4;
start = function() {
console.log('started with ' + wheelCount + ' wheels.');
};
// Closure created here.
return (function() {
return {
make: kind,
wheels: wheelCount,
startEngine: start
};
}());
}
car = carFactory('Tesla');
// => Tesla
console.log(car.make);
// => started with 4 wheels.
car.startEngine();
为什么这个人将闭包作为一个立即调用的函数表达式(IIFE)返回,该表达式返回一个具有他想要共享的属性的对象?我觉得IIFE是不必要的。如果我只是立即返回对象,这将导致相同的事情。我错过了什么吗?
//Closure created here
return{
make: kind,
wheels: wheelCount,
startEngine: start
};
答案 0 :(得分:0)
是的,我不认为你错过任何东西。
刚刚创建了一个闭包的创建。如果您只是返回该对象,则不会将其视为一个(尽管不是最佳示例)。
根据该网站作者的comment:
你需要自动执行功能,因为这就是行为 创造了封闭。 JavaScript只有函数级范围所以 将自由变量绑定到封闭范围的唯一方法是 调用函数。
答案 1 :(得分:0)
如果carFactory()成为某个对象的方法,这可能有意义。然后,返回对象的 this (作为自调用函数)将被更改。
var obj = {};
obj.funA = function(){
return {
getThis:this
};
};
obj.funB = function(){
return (function(){
return {
getThis:this
};
})();
}
console.log(obj.funA()); //object
console.log(obj.funB()); //window