Django uwsgi 错误日志分析例子 uwsgi 启动时就报错 一般能看到:--- no python application found, check your startup logs for errors ---,基本上是配置出错了,无法正常启动 uwsgi。 ... continue reading django zhuoyuebiji 2019/12/26 1562
Django ListView 获取 url 中的参数及根据参数使用不同的模板 from django.views import generic class IndexView(generic.ListView): template_name = 'lw-index-noslider.html' ... continue reading django zhuoyuebiji 2019/12/25 383
如何选择合适的 django 版本使用 首先,是不是需要一个地方来查看 django 有没有新版本发布呢,请看: https://www.djangoproject.com/download/ 然后,该如何选择一个合适的版本,是一股脑装最新版(很肯能存在一些 ... continue reading django zhuoyuebiji 2019/12/25 2597
Django 模板获取 for 循环前 N 条数据 咱先找到官方文档模板内建标签和过滤器页面 https://docs.djangoproject.com/zh-hans/2.2/ref/templates/builtins/ 找到 for in 标签的用法的地方 ... continue reading django zhuoyuebiji 2019/12/25 662
Django 2.2 path、repath、include 注意事项 导入注意事项 Django 2.2 的 path 导入:from django.urls import path, re_path, include APP urls: 增加了 app_name ... continue reading django zhuoyuebiji 2019/12/20 737
Celery 报错:Received unregistered task of type 'apps.share.tasks.post_to_beiqia'. 开发环境 windows 10 python 3.6 celery 4.3.0(redis 做的中间人) 错误日志 启动后错误会一直刷屏,不得不停止掉 (joyoo) E:\yinzhuoqun ... continue reading django zhuoyuebiji 2019/12/19 1067
解决:安装 django-celery-beat 自动把 django 升级到 3.0 了 安装 beat 日志 (joyoo) E:\yinzhuoqun\djangos\joyoo>pip install django-celery-beat Collecting django-celery-be ... continue reading django zhuoyuebiji 2019/12/17 1101
Django 组装表名查询数据(动态表名、组合表名) 了解 getattr 函数 教程:https://www.runoob.com/python/python-func-getattr.html 描述 getattr() 函数用于返回一个对象属性值。 ... continue reading django zhuoyuebiji 2019/12/17 1033
Django + celery + beat 执行定时任务 开发环境 python 3.6.8 djang ... continue reading django zhuoyuebiji 2019/12/17 3179
Celery 报错: Refusing to deserialize untrusted content of type pickle (application/x-python-serialize) 出错环境: windows 10 python 3.6.8 django 1.11.26 celery 4.3.0 错误日志: 同样的代码在 Mac 和 centos 环境 ... continue reading django zhuoyuebiji 2019/12/16 2004