下划线从头开始记忆

时间:2015-08-05 05:30:37

标签: javascript underscore.js

在学习下划线回忆时,我不理解这一行:  " var argString = Array.prototype.join.call(arguments," _")。"我知道它正在创建一个参数字符串,但这在哪里适用?

_.memoize = function(func) {
    var output  = {}; 
    return function(){
        var argString = Array.prototype.join.call(arguments,"_");       
        if (output[argString] === undefined){ 
            output[argString] = func.apply(this, arguments); 
        }
        return output[argString];
    };
};

1 个答案:

答案 0 :(得分:3)

在上面的代码中,最初创建一个名为 output 的对象。

接下来,根据参数创建对象的密钥。

示例:考虑一个函数,

function x(a,b,c){
   // argument will be in an array form, but not an Array actually
   console.log(argument) // will give array like structure.
}

现在,使用 Array.prototype.join.call(arguments,“_”); 根据参数生成动态密钥。

接下来,

if (output[argString] === undefined){ 
        output[argString] = func.apply(this, arguments); 
       }

这将检查,输出对象

中是否存在动态生成的密钥

如果它在那里它将返回没有函数调用的值,否则它将调用该函数并在输出对象中缓存键和值。

希望你理解这背后的逻辑。