摘要:
那些年欠下的源码分析: 妈了个巴子,欠的好像有点多。。 _(:з」∠_ )__ CBV源码分析 APIView源码分析 GenericAPIView类源码分析 ModelViewSet源码分析(rest-framework) APIView用户认证源码分析 BasePermission 用户权限组件 阅读全文
摘要:
准备models表结构 from django.db import models # Create your models here. class Book(models.Model): title = models.CharField(max_length=32) price = models.I 阅读全文
摘要:
APIView models.py from django.db import models # Create your models here. class Book(models.Model): title = models.CharField(max_length=32) price = mo 阅读全文