使用生成的ID创建JavaScript集合的最佳方法

时间:2015-11-11 00:53:05

标签: javascript arrays

我需要创建一个这样的对象:

{
  columns: ["Foo", "Bar", "Baz"],
  rows: {
    0: [0,1,2],
    1: [3,4,5],
  },
  cells: {
    0: "First Cell, First Row",
    1: "Second Cell, First Row",
    2: "Third Cell, First Row",
    3: "First Cell, Second Row",
    4: "Second Cell, Second Row",
    5: "Third Cell, Second Row"
  }
}

数字对象键是行ID和单元格ID。创建对象本身并不难,但是我创建行的部分是不是很难。数组似乎与我正在做的事情过于复杂。

现在我正在为每一行为每一栏推送cellId++这样的

  var cellId = 0;
  data.rows.forEach(function (row, rowId) {
    newData.rows[rowId] = [];
    data.columns.forEach(function (column, columnId) {
      newData.rows[rowId].push(cellId++);
    });
  });

我喜欢的是(伪代码)

  data.rows.forEach(function (row, rowId) {
    newData.rows[rowId] = new Array({startAt: 0, endAt: 2});
  });

有没有这样做?

1 个答案:

答案 0 :(得分:1)

map可以帮助您:

var cellId = 0;
  data.rows.forEach(function (row, rowId) {
    newData.rows[rowId] = data.columns.map(function() { return cellId++; });
  });

或者将它用于两个维度:

newData = data.rows.map(function() {
  return data.columns.map(function() { 
    return cellId++;
  });
})