Django url 反向解析(reverse) 和 命令空间(namespace) 关键的三个参数 appname ( 应用命名空间 ) namespace ( 应用的实例命名空间 ) name ( 视图的名字或者标识 ) 文章 django 版本 1.8 URL路由¶ 对于高质量的Web 应用来说,使用简洁、优 continue reading django zhuoyuebiji 2019/10/30 553
Pycharm 2019.2 下 django 项目选择本地 python 虚拟环境 前提:python 虚拟环境需要自己安装好 用 pycharm 专业版 新建 django 项目 1. 第一步,找到新建入口 2. 第二步,新建 django 项目 新建 django 项目时,把未添加到 pycharm 中的虚拟环境加进来 1. 第一步 continue reading django zhuoyuebiji 2019/10/28 477
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 form form = super().form continue reading django zhuoyuebiji 2019/10/18 944
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 api 文档( /api/docs/ continue reading django zhuoyuebiji 2019/10/18 1332
Django-gravatar 使用用户信息生成头像(gravatar 加速) django-gravatar A lightweight django-gravatar app. Includes helper methods for interacting with gravatars outside of template code. If continue reading django zhuoyuebiji 2019/10/18 477
Django2.2.6 check_password 验证失败解决办法(重设密码) python3.6, django 2.2.6 AUTHENTICATION_BACKENDS 里添加自定义认证 CustomBackend(邮箱、手机号等), 用 python manage.py createsuperuser 创建的超级管理员登录时密码一直验证失败(F continue reading django zhuoyuebiji 2019/10/17 1227
Django-environ 加载 .env 配置文件 docs: https://django-environ.readthedocs.io/en/latest/ Django-environ officially supports Django 1.8 ~ 2.0. Installation: $ pip instal continue reading django zhuoyuebiji 2019/10/15 1091
Django admin 实现 增加记录 和 修改记录 展现不同的表单 说明 提供一个参考,具体逻辑要看具体情况。本质就是根据条件展示不同的表单内容(注意表单必填项字段,保存时要记得传值)。 根据用户返回表单,注意必填项保存时要给值 from django.contrib import admin from blog.models import continue reading django zhuoyuebiji 2019/9/29 987
Django admin list_filter 显示外键字段 models.py class Node(models.Model): """ 节点表 """ name = models.CharField(max_length=128, unique=True, verbose_name="节点名称") continue reading django zhuoyuebiji 2019/9/25 2022
Django admin 对 list_filter 排序 参考文档 1. https://cloud.tencent.com/developer/ask/34273 2. https://djangosnippets.org/snippets/2885/ 3. https://docs.djangoproje continue reading django zhuoyuebiji 2019/9/25 1010