Centos7 安装 mysql5.7 日志 [root@VM_2_29_centos download]# wget https://dev.mysql.com/get/mysql57-community-release-el7-11.noarch.rpm --2020-04- ... continue reading mysql zhuoyuebiji 2020-4-8 160
Django 多字段可选查询 重点是使用字典传值查询。可以指定字段,且是字典为非必填。字段有值就查,没有值就不查该字段。 @login_required(login_url="/user/login") def my_earn(request): ... continue reading django zhuoyuebiji 2020-4-5 535
Django admin 根据新增还是编辑来显示 readonly_fields 字段 class AnchorBindAgentAdmin(admin.ModelAdmin): def get_readonly_fields(self, request, obj=None): """ ... continue reading django zhuoyuebiji 2020-4-3 643
Django admin 列表禁用删除操作,编辑页面禁用删除按钮 class AnchorBindAgentAdmin(admin.ModelAdmin): def get_actions(self, request): # 列表禁用删除操作 if ' ... continue reading django zhuoyuebiji 2020-4-3 1060
Django admin ForeignKey 字段增加搜索选择框 产生背景 当 ForeignKey 数据过多,手动在后台添加时不方便找到自己的想要数据,遂想要一个可以搜索检索数据功能。 检索文档 https://stackoverflow.com/questions/3021 ... continue reading django zhuoyuebiji 2020-4-1 2016
MacOS mysqlclient ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output. 安装环境 Mac OS django 2.2 错误日志 pip install mysqlclient (qingjiu) yinzhuoqundeMacBook-Pro:QingJiuSystem y ... continue reading django zhuoyuebiji 2020-3-31 1221
Centos7 mysqlclient ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output. 安装环境 django 2.2 centos 7 错误日志 pip install mysqlclient (qingjiu) [root@VM_16_3_centos running]# pip in ... continue reading django zhuoyuebiji 2020-3-30 959
Django 模板中使用 widthratio 标签实现 乘法、除法 运算 先看官方文档 http://doc.codingdict.com/django/ref/templates/builtins.html#std:templatetag-widthratio(中文) https://docs.dj ... continue reading django zhuoyuebiji 2020-3-29 1007
Django simpleUI 修改 element-UI 引用的 index.js 和 index.css 链接 以及 base.html 的 vue 资源链接 原来的 index.js 和 index.css 加载时间太慢: 在 simpleUI 下面的 templates(../site-packages/simpleui/templates/admin) 里面找到&nbs ... continue reading django zhuoyuebiji 2020-3-29 566
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 687