티스토리 뷰
반응형
0. 들어가면서.
django를 서버분만 사용할 것이다. 따라서 아래의 방식을 순차적으로 하면된다.
가상환경을 만들고 settings설정을 하고 app 설정 후에 serializers 까지 해서 진행을 할 것이다.
초기설정
# 가상환경 만들기
$ virtualenv venv
# 만든 가상환경 실행하기
$ source venv/Scripts/activate
# git init 전에 할 일(안 올릴 파일들 정리)
$ touch .gitignore
.gitignore에 들어갈 내용을 찾기 위해 아래의 사이트에 들어가자
이런식으로 사용하는 것들을 넣어주고 생성을 누른다. 그리고 전체복사하여 .gitignore에 넣어준다.
#장고와 djangorestframework 설치
$ pip install django==2.1.15 djangorestframework
# 새롭게 git pull 이후에 받아야 할 부분을 설정해준다
$ pip freeze > requirements.txt
# 프로젝트 생성(뒤에 . 파일을 만들어서 안에서 프로젝트생성하는게 아니라 여기 위치에서 생성한다.)
$ django-admin startproject PackMan .
settings.py에 DRF추가
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
# DRF
'rest_framework',
]
app 생성
$ python manage.py startapp accounts
$ python manage.py startapp checks
settings.py에 app 추가
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
# DRF
'rest_framework',
# Mt Apps
'accounts',
'articles',
]
accounts/models.py
from django.contrib.auth.models import AbstractUser
class User(AbstractUser):
pass
settings.py 하단에 추가
# auth 유저 모델은 accounts의 User를 쓰겠다는 의미
AUTH_USER_MODEL = 'accounts.User'
모델 추가. check/models.py
from django.db import models
from django.conf import settings
# Create your models here.
class Check_list(models.Model):
user = models.ForeignKey(settings.AUTH_USER_MODEL, on_delete=models.CASCADE)
date = models.IntegerField()
content = models.TextField()
place = models.CharField(max_length=30)
stufflist = models.CharField(max_length=10)
created_at = models.DateTimeField(auto_now_add=True)
updated_at = models.DateTimeField(auto_now= True)
class Stuff(models.Model):
stuffname = models.CharField(max_length=10)
check_id = models.ForeignKey(Check_list, on_delete=models.CASCADE)
class recommand(models.Model):
place = models.CharField(max_length=30)
plusstuff = models.CharField(max_length=30)
# migration
$ python manage.py makemigrations
$ python manage.py migrate
serializers.py를 check app안에 생성
$ touch check/serializers.py
from rest_framework import serializers
from .models import Check_list
class CheckListSerializer(serializers.ModelSerializer):
class Meta:
model = Check_list
fields = ['id', 'content', 'place', 'stufflist']
class CheckSerializer(serializers.ModelSerializer):
class Meta:
model = '__all__'
내가 모델에서 만든 것중 쓰고 싶은 것을 넣어주면된다.
url 설정
#PackMan\urls.py
from django.contrib import admin
from django.urls import path, include
urlpatterns = [
path('admin/', admin.site.urls),
path('checks/', include('checks.urls'))
]
# checks\urls.py
from django.urls import path
from . import views
app_name = 'checks'
urlpatterns = [
path('', views.check_list),
path('create/', views.create_check),
path('<int:check_pk>', views.check_detail),
]
checks/views.py
from django.shortcuts import get_object_or_404
from rest_framework.decorators import api_view
from rest_framework.response import Response
from .serializers import CheckListSerializer, CheckSerializer
from .models import Check_list
@api_view(['GET'])
def check_list(request):
checks = Check_list.objects.all()
serializer = CheckListSerializer(checks, many=True)
return Response(serializer.data)
@api_view(['GET'])
def check_detail(request, check_pk):
check = get_object_or_404(Check_list, pk=check_pk)
serializer = CheckSerializer(check)
return Response(serializer.data)
@api_view(['POST'])
def create_check(request):
pass
포스트맨을 설치 후에
Django rest framework_2. 포스트맨을 보자.
반응형
'Web > Django' 카테고리의 다른 글
Django rest framework_3. 회원관리(로그인, 회원가입) (32) | 2020.09.17 |
---|---|
Django rest framework_2. 포스트맨(POSTMAN) 시작하기 (0) | 2020.09.15 |
[Django] 사용자인증관리 총 정리 코드 (0) | 2020.08.31 |
[Django] 좋아요기능과 팔로우기능의 DB 네이밍 컨벤션(ManyToManyField) (0) | 2020.08.30 |
[Django]데이터베이스관리(N:M)_팔로우 기능 구현(custom user) (0) | 2020.08.29 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- error:0308010C:digital envelope routines::unsupported
- Express
- JavaScript
- UserCreationForm
- Python
- nextjs autoFocus
- django
- Vue
- read_csv
- TensorFlow
- logout
- next.config.js
- login
- useHistory 안됨
- 클라우데라
- useState
- BFS
- 자연어처리
- pandas
- nodejs
- vuejs
- react
- DFS
- mongoDB
- typescript
- Deque
- Queue
- 자료구조
- react autoFocus
- NextJS
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함