按键加入js数组的值

时间:2016-01-12 07:49:21

标签: javascript arrays

我想将数组的值按键连接到另一个数组。例如,对于下面的输入数组

[['value', 'element1'],['value', 'element2'], ['value1', 'element1'], ['value', null]]

我想要一个输出

[['value', 'element1', 'element2'], ['value1', 'element1']]

有没有办法实现这个目标?

6 个答案:

答案 0 :(得分:1)

数据的简单reduce可以解决这个问题。通常,您会使用一个对象将值映射到键,然后将键/值映射到一个新数组,但在这种情况下,您只需使用索引来定位返回数组中的嵌套数组。

var out = data.reduce(function (p, c) {

  // the key is the first array element, the value the second
  // and i is the index of the nested array in the returned array
  var key = c[0],
      val = c[1],
      i = +key.substr(5) || 0;

  // if the nested array in the returned array doesn't exist
  // create it as a new array with the key as the first element
  p[i] = p[i] || [key];

  // if the value is not null, push it to the correct
  // nested array in the returned array
  if (val) p[i].push(val);
  return p;
}, []);

DEMO

答案 1 :(得分:0)

试试吧。

var data="";
    var j=0;
    var i=0;
    var array1 = [['value', 'element1'],['value', 'element2'], ['value1', 'element1'], ['value', null]];
    var array2 = [];    
    $.each(array1, function(index,value){       

        if(value[1] != null)
        {
            if(data == value[0])
            {
                j++;
                array2[i][j] = value[1];
            }
            else
            {
                i++;
                j = 1;
                data = value[0];
                array2[i] = [];
                array2[i][0] = value[0];
                array2[i][j] = value[1];
            }
        }
    });
    console.log(array2);

=>输出

[['value', 'element1', 'element2'], ['value1', 'element1']]

答案 2 :(得分:0)

可以使用临时对象将第一个元素保存为键。然后在最后循环遍历该对象以构建结果数组

var tmp = {}
var data = [['value', 'element1'],['value', 'element2'], ['value1', 'element1'], ['value', null]] ;

data.forEach(function(elem){
   if(!tmp.hasOwnProperty(elem[0]) && elem[1]){
      tmp[elem[0]] = elem;
   }else if(elem[1]){
     tmp[elem[0]].push(elem[1]);
   }
});

var results = Object.keys(tmp).map(function(key){
   return tmp[key];
});
document.getElementById('pre').innerHTML = JSON.stringify(results)
<pre id="pre"></pre>

答案 3 :(得分:0)

this

答案 4 :(得分:0)

采用Map-reduce方法

function groupMap(array){
    var list = array.reduce(accumulate,{});
    return Object.keys(list).map(function(k){
        return [k].concat(list[k])
    })
}

function accumulate(result,a){
    var vector = a.slice(1); // Vector of the values
    if (result.hasOwnProperty(a[0])){ // Already have the key in the result?
    if (vector.length>0 && vector[0])
        result[a[0]] = result[a[0]].concat(vector)
  }
  else{ // new key
    if (vector.length>0 && vector[0])
        result[a[0]] = vector;
     else
        result[a[0]] = []
  }
  return result;
}

var array = [['value', 'element1'],['value', 'element2'], ['value1', 'element1'], ['value', null]];
var result = groupMap(array);

console.log(result); // Check the output

工作原理

  • 你的数组已减少&#34;通过累积数组中每个键的值。键由第一个元素表示。
  • 缩小的结果是JSON对象。
  • 然后&#34; map&#34;该对象返回数组。
  • 完成。

答案 5 :(得分:0)

var ref = [['value', 'element1'],['value', 'element2'], ['value1', 'element1'], ['value', null]],
results = [[], []];

ref.filter(function (e) {
  for (var i = 0; i < e.length; i++) {
    if (e[i] && results[0].indexOf(e[i]) === -1) {
      results[0].push(e[i]);
    } else if (e[i]) {
      results[1].push(e[i]);
    }
  }
});