所以,通過javascript中的屬性對JSON數組進行排序?
這是一個非常簡化的版本,我的JSON數據:
[
{
"category": "Financial",
"item": "DIAS"
},
{
"category": "Social",
"item": "Andrew Barnett Explains..."
},
{
"category": "Financial",
"item": "FP Sales"
}
]
,我要像下面這樣安排的:
[
{
"category": "Financial",
"items": [
{
"item": "DIAS"
},
{
"item": "FP Sales"
}
]
},
{
"category": "Social",
"items": [
{
"item": "Andrew Barnett Explains..."
}
]
}
]
什麼是最好的方式(性能明智的)來實現這一目標?我確定有比使用兩個循環更好的方法嗎?
感謝
嘗試建立類似'{「金融「:[」DIAS「,」FP銷售「],」社交「:[」Andrew Barnett解釋「,...],...}作爲中間結果。 – Bergi
你問性能嗎,還是你問怎麼做?兩個循環有什麼問題? –
我在問如何以最好的方式做到這一點。 – user1788175