/react_django_http_tutorial

멋쟁이사자처럼 React Django HTTP 통신 정리본입니다.

Primary LanguagePython

react_django_http_tutorial

멋쟁이사자처럼 React Django HTTP 통신 정리본입니다.

이전 세팅

React:

npx create-react-app react_tutorial # React 프로젝트 생성
yarn add axios # axios 설치

Django:

pip install django # Django 설치
pip install djangorestframework # DRF 설치 
pip install django-cors-headers # CORS 방지
django-admin startproject django_tutorial # Django 프로젝트 생성

image