在Addy Osmani 的模块模式示例中,将私有函数分配给变量,如下例所示:
var myNamespace = (function () {
var myPrivateVar, myPrivateMethod;
// A private counter variable
myPrivateVar = 0;
// A private function which logs any arguments
myPrivateMethod = function( foo ) {
console.log( foo );
};
return {
// A public function utilizing privates
myPublicFunction: function( bar ) {
// Increment our private counter
myPrivateVar++;
// Call our private method using bar
myPrivateMethod( bar );
}
};
})();
我会简单地将私有函数写为:
function myPrivateMethod( foo ) {
console.log( foo );
};
如果函数不用作委托,是否有任何理由将函数分配给变量?我正在查看一些始终使用这种模式的代码,但我发现它很难遵循。例如:
var _initializeContext = function() { // many lines of code }