일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- React 18 Nextjs
- RTK Query
- background setttimeout
- React API 참고서
- React 고급 안내서
- React 공식문서
- Babel
- next13 head
- background tab
- notFound()
- context
- Next13
- background: url
- 고급안내서
- react-helmet
- CSS
- Render Props
- getUTCDate
- codingtest
- hook
- Programmers
- React 18
- react hook
- background setInterval
- Javascript
- Nextjs React 18
- React18
- Nextjs
- React 고급안내서
- react
- Today
- Total
목록IT (167)
akjfal
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 음...내코드에 어떤부분이 문제인지 아직 못찾앗다 일단 넘기고 다른데로가보자
ULUG세미나로 머신러닝, 도커 관련을 진행 했다. 다음으로 내가 웹트론트와 React를 주제로 세미나 발표를 했다. 웹관련 발표는 처음으로 한데다가 15분밖에 주어진 시간이 없어서 자세히 설명을 하지 못한것이 아쉬웠다. 다음으로 빅스비 크루분께서 빅스비관련 캡슐을 만드는 법을 설명하셨다. 기본 캡슐을 만들고 크루님이 하신것을 따라 진행했는데 A8은 안된단다. 젠장;;... https://github.com/osydoo/bixby_ULUG_semiar_sample
웹 개발자들을 위한 잡다한 웹 지식 세미나 안녕하세요! 시리즈 행사입니다. 이번에는 구글 검색을 주제로, 웹개발자들을 위한 자잘하고 잡다한 웹 지식 세미나를 준비했습니다!👏👏👏 참석을 원하시는 분은 아래 양식을 제출해주시고, 자리가 확정되면 세미나 3일전까지 연락드리겠습니다. (* 이메일 주소에 오타가 있어서 연락이 어려운 경우가 종종있습니다. 이메일 주소를 잘 확인해주세요!) ❒ 세미나 내용 (1) 알아두면 쓸모있을 수도 있는(?!) 잡다하고 자잘한 웹 지식 (30분 강의, 20분 질의응답) 웹 개발자, 웹마스터, 웹 마케터 등 웹으로 밥 먹고 사는 사람들이 한번쯤 들어보거나 생각해봤던 자잘한 궁금증을 풀어보는 시간! - 고급 Google 검색 기법 - Google 봇의 눈으로 테스트하기 - DNS l..
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..