Windows 安装 virtualenvwrapper-win 和设置 WORKON_HOME 环境变量 安装 virtualenvwrapper-win # using pip pip install virtualenvwrapper-win # using easy_install easy_install ... continue reading python zhuoyuebiji 2021/9/17 987
CKEditor 禁止 img 标签自动添加 style 样式 - 禁止自动设置 width 和 height 出处:https://shiyousan.com/post/636253649204480535 在使用CKEditor的过程中发现,每次上传或添加图片的时候,总会 自动给img 标签添加 width 和 ... continue reading django zhuoyuebiji 2019/8/12 970
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 968
Django admin 列表禁用删除操作,编辑页面禁用删除按钮 class AnchorBindAgentAdmin(admin.ModelAdmin): def get_actions(self, request): # 列表禁用删除操作 if ' ... continue reading django zhuoyuebiji 2020/4/3 954
Error fetching command 'build_solr_schema': The 'solr' backend requires the installation of 'pysolr'. Please refer to the documentation. Command 'build_solr_schema' skipped 错误提示: Error fetching command 'build_solr_schema': The 'solr' backend requires the installation of 'pysolr'. Please ... continue reading django zhuoyuebiji 2020/5/21 950
Django 数据查询中对字段进行排序 方法一:order_by 排序 # 更新时间字段,倒序排序 articles = Article.objects.filter(show_status=True).order_by('-time_created') # 更新时 ... continue reading django zhuoyuebiji 2019/9/25 943
取消 vivo 手机安装软件需要密码的方法 只需要关闭网络(即不联网,关闭 WiFi 和 移动数据)即可 ... continue reading 软件测试 zhuoyuebiji 2019/12/4 928
Python3 + Django + xamdin + DjangoUediter,UEditorField 在 xadmin 下加载不出来的解决办法 使用环境 python==3.6.8 django==1.11.18 xadmin # pip install git+git://github.com/sshwsfc/xadmin.git DjangoUed ... continue reading django zhuoyuebiji 2019/6/13 924
Django DateTimeField 指定日期筛选(How can I filter a date of a DateTimeField in Django) models.py class AnchorBindAgent(models.Model): """ 主播绑定到代理,绑定规则 """ end_time_default = (timezon ... continue reading django zhuoyuebiji 2020/4/23 921
Mac 之 STF 搭建(淘宝源安装) 参考链接: https://www.jianshu.com/p/5fe8cb7d214f (MAC 直接安装 STF) https://www.jianshu.com/p/c5c298486dbd(homebrew 安装指定版本 nod ... continue reading 软件测试 zhuoyuebiji 2019/5/10 910