본문 바로가기
개발언어/자바스크립트

Access-Control-Allow-Origin, CORS 에러, 크롬 크로스 도메인 (cross domain) 처리

by 창용이랑 2022. 3. 3.
728x90

Ajax 호출을 할때 URL이 다른 사이트의 데이터를 가지고 오려면 

아래와 같이 크로스도메인(CrossDomain) 에러가 발생하는 경우가 있어요.

 

'Access-Control-Allow-Origin' header is present on the requested resource'

 

이럴땐 아래와 같이 설정을 통해 크로스도메인을 무시하고 작업을 진행할 수 있어요.

 

크롬에서 오른쪽 버튼 누르고 속성으로 들어갑니다.

 

기존에는 --disable-web-security 만 붙히면 됐는데 

지금은 --user-data-dir 인자를 추가로 더 붙혀야해요

 

아래 처럼 해주시면 됩니다.

"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --disable-web-security --user-data-dir="C:\chrome"

 

 

출처 : https://intro0517.tistory.com/139