Redux: Normalizing Global State
问题 Assume the following situation: 1. Page has many posts 2. Post has many comments I have the following reducers: 1. PagesReducer 2. PostsReducer 3. PostReducer 4. CommentsReducer I have the following state right now: pagesByTitle: { dorrisPage: { isFetching: false, data: { _id: "..." title: "dorrisPage", }, posts: [ { isFetching: false, data: { _id: "..", body: ".." }, comments: [..] } ] } } The above structure looked okay initially, but I realized that I had to pass down the action for child