10

假设我有一个数组数组,我想返回数组中每个数组的第一个元素:

array = [[["028A","028B","028C","028D","028E"],
          ["028F","0290","0291","0292","0293"],
          ["0294","0295","0296","0297","0298"],
          ["0299","029A","029B","029C","029D"],
          ["029E","029F","02A0","02A1","02A2"]],
         [["02A3","02A4"],
          ["02A5", "02A6"]];

我知道我可以做这样的事情:

var firsts = [];
_.each(array, function(item){
  _.each(item, function(thisitem){
    firsts.push(_.first(thisitem));
  });
});

但是如果我想用下划线的_.chain()方法来做呢?只是学习下划线,到目前为止似乎很有用。

4

1 回答 1

30

你可以这样做,flatten因此map

var firsts = _.chain(array)
              .flatten(true) // This true is important.
              .map(function(a) { return a[0] })
              .value();

演示:http: //jsfiddle.net/ambiguous/cm3CJ/

您使用flatten(true)将您的数组数组转换为数组数组,然后map剥离每个内部数组的第一个元素。

如果你想要比 更短的东西map,你可以pluck用来拉出内部数组的第一个元素:

var firsts = _.chain(array)
              .flatten(true) // This true is important.
              .pluck(0)
              .value();

演示:http: //jsfiddle.net/ambiguous/pM9Hq/

_.pluckmap无论如何只是一个电话:

// Convenience version of a common use case of `map`: fetching a property.
_.pluck = function(obj, key) {
  return _.map(obj, function(value){ return value[key]; });
};

这个看起来更像.map(&:first)你在 Ruby 中使用的那个,所以它可能对某些人来说更熟悉,一旦你习惯了它就会更简洁pluck。如果你真的想要一些 Rubyish 的东西,你可以使用一个非匿名函数map

var first  = function(a) { return a[0] };
var firsts = _.chain(array)
              .flatten(true) // This true is important.
              .map(first)
              .value();
于 2012-05-17T18:06:56.257 回答