我有以下要重新排列的对象,以便可以传递给模板。需要帮助将其从以下格式转换
var nature = [
{
"type": "fruit",
"name": "apple",
"color": "red",
},
{
"type": "vegetable",
"name": "carrot",
"color": "orange",
},
{
"type": "fruit",
"name": "grape",
"color": "green",
},
{
"type": "vegetable",
"name": "tamato",
"color": "red",
},
];
到这种格式
var nature = [{
"fruit": [
{
"type": "fruit",
"name": "apple",
"color": "red"
},
{
"type": "fruit",
"name": "grape",
"color": "green"
}
],
"vegetable": [
{
"type": "vegetable",
"name": "carrot",
"color": "orange"
},
{
"type": "vegetable",
"name": "tomato",
"color": "red"
}
]
}];
寻找实现它的最快方法。感谢您查看帖子。感谢帮助。