list.forEach((item, index) => {
const key = item.Findex //当前key
if (!map[key]) { //如果没有当前key 2.存在当前key
map[key] = { //创建当前key
title: key,
items: []
}
}
//当前key 添加属性 2.当前key直接添加
map[key].items.push(new Singer({
id: item.Fsinger_mid,
name: item.Fsinger_name
}))
})
// 以前组合数据走了很多弯路,现在记录一下,防止犯错
网友评论