drf框架(二)
drf框架安装 >: pip install djangorestframework drf框架规矩的封装风格 from rest_framework.views import APIView from rest_framework.response import Response from rest_framework.request import Request from rest_framework.filters import SearchFilter from rest_framework.pagination import PageNumberPagination from rest_framework.exceptions import APIException from rest_framework.authentication import BaseAuthentication from rest_framework.permissions import IsAuthenticated from rest_framework.throttling import SimpleRateThrottle from rest_framework.settings import APISettings from rest_framework import status