摘要: urls.py的配置 from django.conf.urls import url,include from django.contrib import admin from app import views from django.urls import path urlpatterns = 阅读全文
posted @ 2020-09-18 16:38 亦木121 阅读(530) 评论(0) 推荐(0)
摘要: APIView实现列表视图 #测试APIView的request from rest_framework.views import APIView from rest_framework.response import Response from rest_framework import stat 阅读全文
posted @ 2020-09-18 15:01 亦木121 阅读(126) 评论(0) 推荐(0)
摘要: 1、继承自view 2、提供了rest_framework自己的request对象,不是django里的HttpRequest对象 3.返回了est_framework自己的response队形,不时django里的HttpResponset对象 4.并且提供了权限、认证、限流等功能 View获取数 阅读全文
posted @ 2020-09-18 09:35 亦木121 阅读(156) 评论(0) 推荐(0)