React(2)
-
no 'access-control-allow-origin' header is present on the requested resource 오류
React 로 API 연동을 시도하던 중에 no 'access-control-allow-origin' header is present on the requested resource 라는 오류가 나왔다. 해결 방법은 구글링을 해보니 크롬에 플러그 인으로 Allow-Control-Allow-Origin를 설치하면 된다고 해서 해결했었다. 하지만 이건 프론트 엔드 문제가 아니고 서버 쪽 문제였다. Cors ( 포트번호가 다르게 연결될 때 제약사항) 문제라고 한다. 서버에서 Cors 설정을 해줘서 해결됬다. 출처 kimyhcj.tistory.com/263
2021.03.28 -
React 오류 : A component is changing an uncontrolled input to be controlled. This is likely caused by the value changing from undefined to a defined value, which should not happen. Decide between using a controlled or uncontrolled input element for th..
React 실습 도중에 오류가 나왔다. 이 오류는 구글링해보니 default값을 설정 안해줘서 난 것 같다. 설정하니 잘 작동했다.
2021.03.08