Django 설정restframework 및 settings 설정.py 파일

1158 단어 Django
# pip install djangorestframework
setting.py에서 구성
INSTALLED_APPS = ['django.contrib.admin','django.contrib.auth','django.contrib.content types','django.contrib.sessions','django.contrib.messages','django.contrib.staticfiles','rest framework', #restfulapi 설정이 필요한'app']
#시간대 LANGUAGE 구성CODE = 'zh-hans' TIME_ZONE ='Asia/Shanghai'# False 시간으로 설정하지 않고 입고시 경고 USETZ = False
urls.py에서 설정 필요
from django.conf.urls import url,include urlpatterns = [path('admin/', admin.site.urls), url(r'^api-auth/', include('rest framework.urls', namespace='rest framework')), url(r'^student/', include('app.urls'), # 스스로 설정한 urls'를 적용]
 views.py에서 설정 필요
from rest_framework.decorators import api_view, permission_classes from rest_framework.permissions import AllowAny from rest_framework.response import Response
@api_view(('GET',)) @permission_classes((AllowAny,)) def getdata(request):     results = {}     status = 200     return Response(data=results, status=status)
 

좋은 웹페이지 즐겨찾기