a React-Redux Action Update Multiple Reducers
问题 How an Action update multiple different Reducers? How can i implement like this? UPDATE: this is my action in ./actions/sync.js. this action connected to an external API and call from Sync Component, periodically. export function syncFetch(response) { return { type: 'SYNC_FETCH', response } } export function syncFetchData(url) { return (dispatch) => { fetch(url) .then((response) => { if (!response.ok) { throw Error(response.statusText); } return response; }) .then((response) => response.json(