HINT: ForeignKey(unique=True) is usually better served by a OneToOneField. WARNINGS HINT: ForeignKey(unique=True) is usually better served by a OneToOneField. 警告的意思 django model 里面 ... continue reading django zhuoyuebiji 2020/3/28 563
HINT: It seems you set a fixed date / time / datetime value as default for this field. This may not be what you want. If you want to have the current date as default, use `django.utils.timezone.now` WARNINGS operations.AnchorBindAgent.start_time: (fields.W161) Fixed default value provided. HINT: ... continue reading django zhuoyuebiji 2020/3/28 1242
Django2 The custom handler404 view 'users.views.page_not_found' does not take the correct number of arguments (request, exception). 错误日志 django 2.2 配置全局 404、500 时报错: The custom handler404 view 'users.views.page_not_found' does not take th ... continue reading django zhuoyuebiji 2020/3/27 1052
Django CKEditor 上传图片提示“不正确的服务器响应”的解决办法 开发环境 django 1.11 django-ckeditor 5.3.1(CKEditor 4.7.3) 发生背景 前端页面引用了 CKEditor 富文本编辑器,Django 未登录的时候上传文件就会报:&qu ... continue reading django zhuoyuebiji 2020/3/12 1348
Django admin 只有两种状态非布尔类型的字段转成布尔类型,admin 后台显示 绿色勾 和 红色叉 正常情况下 models.BooleanField 类型字段在 django admin 后台 列表页面会自动显示 绿色勾 和 红色叉,如图: 有时候我们写模型的的时候写成了其他显示文案,如果只有两种状态时,又想显示 ... continue reading django zhuoyuebiji 2020/3/11 604
ModuleNotFoundError: No module named 'django.core.urlresolvers' 原因是在 Django 2.x 版本上,revers 已经修改其他地方去了 try: from django.urls import reverse except ImportError: # Django < ... continue reading django zhuoyuebiji 2020/3/8 634
Django CKEditor 给 a tag(标签)添加 target 默认值 启发文档 https://ckeditor.com/docs/ckeditor4/latest/guide/dev_disallowed_content.html CKEDITOR.on( 'dialogDefinition ... continue reading django zhuoyuebiji 2020/3/7 357
Django form 里 password1 password2 验证先后探索(注册表单) 首先,我们看看能正常验证两次密码一致性的注册表单 : from __future__ import unicode_literals import unicodedata from django import form ... continue reading django zhuoyuebiji 2020/3/6 500
Django 用户权限、用户角色使用指南(转) RBAC(Role-Based Access Control,基于角色的访问控制)就是用户通过角色与权限进行关联。简单地说,一个用户拥有若干角色,每一个角色拥有若干权限。这样,就构造成“用户-角色-权限”的授权模型。 ... continue reading django zhuoyuebiji 2020/3/6 1548
Add a button/form/link to Django Admin(添加按钮、表单、链接到 django admin) 继承 change_list.html 模板 新模板 change_list_custom.html 继承 django admin 的 change_list.html Django a ... continue reading django zhuoyuebiji 2020/3/3 563