일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- React 18
- Javascript
- 고급안내서
- background setInterval
- Babel
- Next13
- React 고급안내서
- react
- notFound()
- react hook
- hook
- React API 참고서
- React 18 Nextjs
- Nextjs React 18
- react-helmet
- CSS
- getUTCDate
- next13 head
- background setttimeout
- background: url
- React 공식문서
- codingtest
- background tab
- React 고급 안내서
- context
- Programmers
- Nextjs
- React18
- RTK Query
- Render Props
- Today
- Total
목록하루의 이슈 (40)
akjfal
https://wormwlrm.github.io/2018/10/03/What-is-the-difference-between-javascript-and-ecmascript.html 불러오는 중입니다... https://github.com/yangshun/front-end-interview-handbook/blob/master/Translations/Korean/questions/html-questions.md yangshun/front-end-interview-handbook 🕸 Almost complete answers to "Front-end Job Interview Questions" which you can use to interview potential candidates, test yoursel..
https://stackoverflow.com/questions/53420055/error-while-sorting-array-of-objects-cannot-assign-to-read-only-property-2-of/53420326 Error while sorting array of objects Cannot assign to read only property '2' of object '[object Array]' I'm having array of objects where object looks like this (values change): { stats: { hp: 2, mp: 0, defence: 4, agility: 11, speed: 6, streng... stackoverflow.com ..
https://github.com/facebook/react/issues/14326 Async useEffect is pretty much unreadable · Issue #14326 · facebook/react The only alternative is using then() chains which aren't very readable at their own. github.com 음...내코드에 어떤부분이 문제인지 아직 못찾앗다 일단 넘기고 다른데로가보자
redux startr kit + redux persist + redux saga import { combineReducers } from "redux" import { persistReducer } from 'redux-persist'; import storage from 'redux-persist/lib/storage'; import root from './reducer' const persistConfig = { key:'root', storage, whitelist: ['state'] } export default combineReducers({ root: persistReducer(persistConfig, root), }) import React from "react"; import { con..
회사 코드 refactoring에 집중 배열 속 객체의 데이터 하나를 변경해야 하는 문제 발생 -> 해결 const Plus=(i)=>{ const amount = tempOptionList[i].amount+1; const tempOption = {id: tempOptionList[i].id, option: tempOptionList[i].option, price: tempOptionList[i].price, stock: tempOptionList[i].stock, amount}; tempOptionList[i] = tempOption; restList = tempOptionList.concat(restList); dispatch(calOptionAmount(restList)); } 새로운 객체를 생성..
1. var는 let과 const와 다르게 전역이다. 2. redux자체는 얕은 비교만은 진행한다. 3. await를 통해 비동기가 작동되면 함수를 2개로 나눈다고 생각하자. 4. 구조 분해 할당 [a, b ,c] = function() 5. localhost 와 127.0.0.1의 차이 - 실제 주소와 loopback이기 때문에 속도차이가 존재한다. - mysql의 경우 localhost는 ip프로토콜의 루프백을 이용한것이고 본인 ip는 인터넷에 연결된 물리적인 랜카드 이용 6. redux-starter-kit 요약 정리해보기!
react-redux-kit 아래 내용은 어제 멘토링 받은 내용을 재정리한 내용 1. 선언 import React from "react"; import { render } from "react-dom"; -import { createStore } from "redux"; +import { configureStore } from "redux-starter-kit"; import { Provider } from "react-redux"; import App from "./components/App"; import rootReducer from "./reducers"; -const store = createStore(rootReducer); +const store = configureStore({ + redu..