akjfal

11/11 본문

하루의 이슈

11/11

akjfal 2019. 11. 12. 09:22

회사 코드 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

 

javascript ajax 크로스도메인 요청-CORS

web application development | Overview 웹 개발시 자바스크립트로 외부 서버의 경로로 ajax요청을 날리면 에러가 나면서 요청이 실패한다. 웹 브라우저의 콘솔 창에 아래와 같은 메시지를 보게 된다. 크롬 No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin ‘[요청한 도메인]' is

brunch.co.kr

다음 문제같은데 일단 서버단에서 확인후 알려주기로함

kakao sdk가 너무 구식이라 header에 선언 후 받아오는 것을 window전역변수를 통해 해결

 

'하루의 이슈' 카테고리의 다른 글

11/13  (0) 2019.11.14
11/12  (0) 2019.11.12
주간 정리  (0) 2019.11.10
11/6  (0) 2019.11.06
11/4  (0) 2019.11.04
Comments