[에러] redux-actions

1269 단어 에러에러

문제점

TypeError: Object(...) is not a function (redux)

원인

createActions 사용시 타입명과 반환된 함수는 일치해야하며 _뒤에 문자만 대문자로 써야한다.

이처럼 사용하면 에러발생

const {getTodoList} = createActions('GET_TODOLIST',{prefix})

해결

const {getTodoList} = createActions('GET_TODO_LIST',{prefix})

좋은 웹페이지 즐겨찾기