Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- UX
- ㄷㅌ
- JS#3일차달리자#초반인데#시간금방~
- https://www.daleseo.com/js-array-slice-splice/
- toString#String
- Beesbeesbees
- removeCookie
- CSS
- dom
- children vs childrenNodes
- react
- slice/splice/split
- 자바스크립트#JS#slice#splice
- 내장고차함수
- @redux-toolkit
- User Flow
- https://dasima.xyz/%EC%9E%90%EB%B0%94%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EC%A0%9C%EA%B3%B1-math-pow-%EA%B3%84%EC%82%B0/
- variable#function
- cmarket
- https://developer-talk.tistory.com/299
- for~in/for~of
- https://lo-victoria.com/introduction-to-redux-toolkit-for-beginners
- 자바스크립트#JS#var#let#const#undefined#null
- UI
- 자바스크립트#조건문#문자열
- 자바스크립트
- js
- 헷갈린다~
- 노드교과서
- redux상태유지
Archives
- Today
- Total
목록Redux (1)
Daily Front_Minhhk
Redux 데이터 초기화로 인한 해결하기 [redux-persist @reduxjs/toolkit]
로그인을 하여 토큰을 받아 오는 것을 확인 하였고, redux를 이용하여 axios로 post 할 때 dispatch 해주어 isLogin 상태를 true 로 만들어 주었다. dispatch({ type: "USER_ISLOGIN" }); 아래는 redux 파일이다 src/Redux/index.js import { combineReducers } from 'redux'; import userReducer from "./userReducer"; const rootReducer = combineReducers({ // 쓰실 리듀서 페이지 만드셔서 key 랑 값 하시면 될 거 같아요 user: userReducer, }); export default rootReducer; src/Redux/userRedux...
Project
2023. 3. 26. 16:29