Javascript Array按属性分组
ybning opened this issue · 0 comments
ybning commented
待分组的数组:
var arr = [
{city: "上海", location: "浦东"},
{city: "上海", location: "静安"},
{city: "北京", location: "内环"},
{city: "北京", location: "五环"},
{city: "苏州", location: "苏州"},
];
forEach实现第一种:
// 获取 {} 结构
const mapCityLoction = function(arr) {
let cities = {};
arr.forEach((address, index) => {
let locations = cities[address.city] || [];
locations.push(address.location);
cities[address.city] = locations;
})
return cities;
}
forEach实现第二种:
// forEach 获取 [ {city: , location}] 结构
const mapCityLoction_new = function() {
let newArr = [];
arr.forEach((address, i) => {
let index = -1;
let alreadyExists = newArr.some((newAddress, j) => {
if (address.city === newAddress.city) {
index = j;
return true;
}
});
if (!alreadyExists) {
newArr.push({
city: address.city,
location: [address.location]
});
} else {
newArr[index].location.push(address.location);
}
});
return newArr;
};
reduce实现:
// reduce 获取 [ {city: , location}] 结构
const mapCityLoction_lastest = function() {
return arr.reduce( (prev, current) => {
let index = -1;
prev.some((address, i) => {
if (address.city === current.city) {
index = i;
return true;
}
});
if (index > -1) {
prev[index].location.push(current.location);
} else {
prev.push({
city: current.city,
location: [current.location]
});
}
return prev;
}, [])
};
- 每种实现各有优缺点,视具体情况而择。
最后推荐一本书:深入浅出 Webpack