作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
您好,我想根据数组中的唯一项合并一个数组。
我拥有的对象
totalCells = []
在这个 totalCells 数组中,我有几个这样的对象
totalCells = [
{
cellwidth: 15.552999999999999,
lineNumber: 1
},
{
cellwidth: 14,
lineNumber: 2
},
{
cellwidth: 14.552999999999999,
lineNumber: 2
},
{
cellwidth: 14,
lineNumber: 1
}
];
现在我想创建一个数组,其中我有基于 lineNumber 的数组组合。
就像我有一个带有 lineNumber 属性和 cellWidth 集合的对象。我可以这样做吗?
我可以遍历每一行并检查行号是否相同,然后推送该单元格宽度。有什么办法可以解决吗?
我正在尝试获得这样的输出。
totalCells = [
{
lineNumber : 1,
cells : [15,16,14]
},
{
lineNumber : 2,
cells : [17,18,14]
}
]
最佳答案
var newCells = [];
for (var i = 0; i < totalCells.length; i++) {
var lineNumber = totalCells[i].lineNumber;
if (!newCells[lineNumber]) { // Add new object to result
newCells[lineNumber] = {
lineNumber: lineNumber,
cellWidth: []
};
}
// Add this cellWidth to object
newcells[lineNumber].cellWidth.push(totalCells[i].cellWidth);
}
关于javascript - 如何在javascript中组合数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24302630/
我是一名优秀的程序员,十分优秀!