Redux 기반 베이스 [그림의 이미지]
4762 단어 React
출력 배경
이중화
불필요한 장면 필요
상태 관리가 복잡해질 때?
Redux를 사용하여 상태 분리
from https://css-tricks.com/learning-react-redux/
이중화 기능
Redux의 등장인물
Store
console.log(store.getState())
Action type
const ACTION_TYPE = "ACTION_TYPE";
ActionCreator
Action
{
type: "アクションの種類を識別できる文字列またはシンボル",
payload: "アクションの実行に必要なデータ(引数)",
}
Reducer
{
const reducer = (state = initState, { type, payload }) => {
switch (type) {
case ACTION_TYPE:
return newState(payload);
default:
return state;
}
};
다음
Reference
이 문제에 관하여(Redux 기반 베이스 [그림의 이미지]), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/uehiro22/items/1502e8fa7e209e3d4690텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)