Updating nested data in redux store
问题 What's the best/correct way to update a nested array of data in a store using redux? My store looks like this: { items:{ 1: { id: 1, key: "value", links: [ { id: 10001 data: "some more stuff" }, ... ] }, ... } } I have a pair of asynchronous actions that updates the complete items object but I have another pair of actions that I want to update a specific links array. My reducer currently looks like this but I'm not sure if this is the correct approach: switch (action.type) { case RESOURCE