gpt4 book ai didi

underscore.js - _ 在 apply() 中的含义

转载 作者:行者123 更新时间:2023-12-04 03:46:53 25 4
gpt4 key购买 nike

In this question ,答案代码之一是:

var arrays = [[1,2,3,4,5,6], [1,1,1,1,1,1], [2,2,2,2,2,2]];

_.map(_.zip.apply(_, arrays), function(pieces) {
return _.reduce(pieces, function(m, p) {return m+p;}, 0);
});

apply(_, arrays) 中,我不明白 _ 有什么关系。

最佳答案

apply调用相当于

_.zip([1,2,3,4,5,6], [1,1,1,1,1,1], [2,2,2,2,2,2])

apply 的第一个参数确保使用正确的上下文 (this value) 调用 zip,通常是 _,Underscore 的命名空间- constructor-function -目的。实际上它没有在 zip 函数中使用,所以我们可以省略它并传递 nullundefined 代替。

关于underscore.js - _ 在 apply() 中的含义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19404032/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com