07 2021 档案
django-restframwork filter查询源码分析
摘要:视图类继承了ListModelMixin类 class ListModelMixin(object): """ List a queryset. """ def list(self, request, *args, **kwargs): queryset = self.filter_queryset
阅读全文
Cntent-Type
摘要:再调用远端接口时,特别时post接口,要注意远端接口传参数的数据格式。 最常用的有 def post(self): status, resp = auth.authorized_request( path='{}{}'.format(HOST, self.url), method='POST', a
阅读全文