일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- codingtest
- RTK Query
- context
- background: url
- hook
- Babel
- React 고급 안내서
- Javascript
- Nextjs React 18
- background setttimeout
- notFound()
- Render Props
- 고급안내서
- Nextjs
- background tab
- background setInterval
- React 공식문서
- react hook
- next13 head
- Next13
- Programmers
- React API 참고서
- React 고급안내서
- getUTCDate
- React 18 Nextjs
- CSS
- React 18
- react
- React18
- react-helmet
Archives
- Today
- Total
akjfal
11/11 본문
회사 코드 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));
}
새로운 객체를 생성 후 기존 배열에 넣어주는 방식 채택
카카오 로그인과 서버간의 충돌 발생
https://brunch.co.kr/@adrenalinee31/1
다음 문제같은데 일단 서버단에서 확인후 알려주기로함
kakao sdk가 너무 구식이라 header에 선언 후 받아오는 것을 window전역변수를 통해 해결
Comments