반응형
로컬에서 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")
반응형
'개발자정보' 카테고리의 다른 글
html react 변환 for (1) | 2024.12.10 |
---|---|
Github에 node_modules 폴더 제외하는 방법 (0) | 2024.09.26 |
redirect in react 18에 오류 해결 방법 (1) | 2024.09.24 |
This expression is not callable. Type 'typeof import("X:/xxx/node_modules/date-fns/format")' has no call signatures. (0) | 2024.09.11 |
React, Module '"react-i18next"' has no exported member 'TFunction'. 오류 해결 (0) | 2024.09.11 |