谨防!这个问题可能令人困惑并且不相关,因为我对错误原因的假设是错误的,问题出在减速器中,而不是我表示数据的方式。
所以,这个问题的正确答案是jpdelatorre的问题,但 Joao的问题是关于 bug 本身。
假设我有来自服务器的 JSON 响应,它是一组嵌套对象。如何将其展平以使商店处理尽可能容易?我试过使用这样的 normalizr 工具:
const imageSchema = new Schema('image', { idAttribute: 'id' });
const tooltipSchema = new Schema('tooltips', { idAttribute: 'id' });
imageSchema.define({
tooltips: arrayOf(tooltipSchema),
});
const initData = data.map(item => normalize(item, imageSchema));
但我相信我做错了,因为它没有多大帮助。存储仍然太复杂,因此我需要在 reducer 中使用一些递归的东西来更新状态。
此外,深度嵌套的状态也使得使用 react-redux 变得connect()
非常困难,因为它只进行了浅层比较。
响应的形状如下:
[
{
"id": 1,
"title": "Partridge",
"tooltips": [
{
"id": 10,
"x": 0.56,
"y": 0.59,
"content": "Jacky"
},
{
"id": 11,
"x": 0.08,
"y": 0.8,
"content": "Sarah"
}
]
},
{
"id": 2,
"title": "The Great Seal of South Australia",
"tooltips": [
{
"id": 20,
"x": 0.77,
"y": 0.74,
"content": "A sheaf of wheat"
},
{
"id": 21,
"x": 0.16,
"y": 0.2,
"content": "A sheep"
}
]
}
]