摘要: 不使用drf视图 #在下面的这些代码中,存在很多代码重复 from rest_framework.views import APIView from app01.models import * from app01.mySer import * from django.http import Jso 阅读全文
posted @ 2019-07-27 22:28 pdun 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 源码分析 1 在调用request.data时,才进行解析,由此入手 @property def data(self): if not _hasattr(self, '_full_data'): self._load_data_and_files() return self._full_data 2 阅读全文
posted @ 2019-07-27 09:47 pdun 阅读(356) 评论(0) 推荐(0) 编辑