【React+Redux:reducer, state】reducer를 추가했는데 해당 state가 정의되지 않을 때는 combineReducer를 확인한다
reducer 추가시 combineReducer 확인
reducer가 state별로 나누어진 파일 구성으로 새로운 reducer를 추가했을 때,
해당 reducer에서 정의한 state가 반영되지 않는다고 생각했던 곳,
combineReducers 에 추가한 reducer를 정의하지 않았습니다.
reducers/index.js import { combineReducers } from 'redux'
export default combineReducers({
oldReducer,
newReducer // この定義が抜けていました
})
초보적인 실수로 당황합니다만, 곤란했기 때문에 메모해 둡니다.
참조 URL
・상기 「combineReducer」의 링크(공식)
htps : // Rez X. js. 오 rg/아피/코m 비네레즈세 rs
Reference
이 문제에 관하여(【React+Redux:reducer, state】reducer를 추가했는데 해당 state가 정의되지 않을 때는 combineReducer를 확인한다), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/computer-penguin/items/608e2ba022719f6cd238
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
import { combineReducers } from 'redux'
export default combineReducers({
oldReducer,
newReducer // この定義が抜けていました
})
Reference
이 문제에 관하여(【React+Redux:reducer, state】reducer를 추가했는데 해당 state가 정의되지 않을 때는 combineReducer를 확인한다), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/computer-penguin/items/608e2ba022719f6cd238텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)