본문 바로가기

개발자정보

React Network Error 해결 방법

반응형

로컬에서 React 띄우고 서버에 있는 URL를 호출하면 Network 오류 발생

 

해결 방법

 

package.json

"proxy": "http://www.sample.com/getDataList.php",

 

 

php 사용 할 경우 아래 스크립트 추가해 준다.

header("Access-Control-Allow-Origin: *");
header("Content-Type: application/json; charset=UTF-8");

 

 

header("Access-Control-Allow-Origin: *"); 
header("Access-Control-Allow-Methods: POST, GET, OPTIONS"); 
header("Access-Control-Allow-Headers: Content-Type")
반응형