尝试使用 Normalizr 规范化包含与父级相同类型的嵌套模式的我的有效负载时遇到一些问题
例如
{
id: 123,
sections:{
section: [{
id: 1,
name: "test",
sections: {
section: {
id: 125,
name: "test125"
}
}
}, {
id: 2,
name: "test2"
sections: {
section: [
{
id: 124,
name: "test124"
}
]
}
}, {
id: 3,
name: "test3"
}]
}
}
在上面的 json 结构中,嵌套部分可以是一个对象,也可以是一个数组。