在一个部分对象中,我有一个CategoryId
- 就像一个外键。现在,我想将每个部分复制到匹配的类别对象中。
来源:
var sections = [{title:"FirstSection", CategoryId : 1},
{title:"SecondSection", CategoryId : 1},
{title:"ThirdSection", CategoryId : 2}];
var categories = [{title:"Cat1", Id : 1},
{title:"Cat2", Id : 2}];
结果将如下所示:
categories = [{title:"Cat1",
Id : 1,
sections : [{title:"FirstSection", CategoryId : 1},
{title:"SecondSection", CategoryId : 1}]
},
{title:"Cat2",
Id : 1,
sections: [{title:"ThirdSection", CategoryId : 2}]
}];
现在所有的节CategoryId = 1
都在 ID = 1 的类别的节数组中。
也许我正在搜索错误的关键字,但我找不到解决方案。