Django_filters TypeError: __init__() got an unexpected keyword argument 'name' # 错误信息: File "E:\py_virtualenv\tracbug\lib\site-packages\django_filters\rest_framework\filterset.py", line 24, in ... continue reading django zhuoyuebiji 2019/10/18 965
Django REST framework 3.10.3 访问 /api/docs/ 报错 'AutoSchema' object has no attribute 'get_link' 环境 python 3.6.8 django 2.2.6 django rest framework 3.10.3 报错 访问 django rest framework& ... continue reading django zhuoyuebiji 2019/10/18 1347
Django-gravatar 使用用户信息生成头像(gravatar 加速) django-gravatar A lightweight django-gravatar app. Includes helper methods for interacting with gravatars o ... continue reading django zhuoyuebiji 2019/10/18 494
Django2.2.6 check_password 验证失败解决办法(重设密码) python3.6, django 2.2.6 AUTHENTICATION_BACKENDS 里添加自定义认证 CustomBackend(邮箱、手机号等), 用 python manage.py creates ... continue reading django zhuoyuebiji 2019/10/17 1239
Django-environ 加载 .env 配置文件 docs: https://django-environ.readthedocs.io/en/latest/ Django-environ officially supports Django 1.8 ~ 2.0. I ... continue reading django zhuoyuebiji 2019/10/15 1109
Django admin 实现 增加记录 和 修改记录 展现不同的表单 说明 提供一个参考,具体逻辑要看具体情况。本质就是根据条件展示不同的表单内容(注意表单必填项字段,保存时要记得传值)。 根据用户返回表单,注意必填项保存时要给值 from django.contrib import a ... continue reading django zhuoyuebiji 2019/9/29 1007
Django admin list_filter 显示外键字段 models.py class Node(models.Model): """ 节点表 """ name = models.CharField(max_length=128, unique= ... continue reading django zhuoyuebiji 2019/9/25 2043
Django admin 对 list_filter 排序 参考文档 1. https://cloud.tencent.com/developer/ask/34273 2. https://djangosnippets.org/snippets/2885/ 3. ... continue reading django zhuoyuebiji 2019/9/25 1031
Django 数据查询中对字段进行排序 方法一:order_by 排序 # 更新时间字段,倒序排序 articles = Article.objects.filter(show_status=True).order_by('-time_created') # 更新时 ... continue reading django zhuoyuebiji 2019/9/25 941
Django 多级分类,一个 model 搞定 代码是一个学习项目代码,觉得这种分类方式挺简便,所以分享出来了。 from django.db import models # Create your models here. class GoodsCategor ... continue reading django zhuoyuebiji 2019/9/25 2032