Django redis 中文文档 🚀 https://django-redis-chs.readthedocs.io/zh_CN/latest/ django-redis 中文文档 Andrey Antukh, niwi@niwi.be 4. ... continue reading django zhuoyuebiji 2019/11/18 243
Django 使用 celery 执行异步任务和定时任务 参考文档 https://docs.celeryproject.org/en/latest/django/first-steps-with-django.html Django 中使用 Celery Django 配置 ... continue reading django zhuoyuebiji 2019/11/18 84
Django 获取 request 的 url 源代码路径 Lib\site-packages\django\http\request.py 获取带参数 URL ( django 1.11 居然报错了) request.get_full_p ... continue reading django zhuoyuebiji 2019/11/21 859
Django 提高网页打开速度 框架 CSS、JS 文件 使用 cdn 上的链接 所有框架类的 js 和 css 一律不用本地的,使用 bootcdn.cn(staticfile.org,jsdelivr.com 等) 上的链接,自己修 ... continue reading django zhuoyuebiji 2019/11/22 504
Django 获取字段选项 choice 的值 choices 由二项元组构成的一个可迭代对象(例如,列表或元组),用来给字段提供选择项。 如果设置了choices ,默认的表单将是一个选择框而不是标准的文本框,而且这个选择框的选项就是choices 中的选项。 这 ... continue reading django zhuoyuebiji 2019/11/26 3164
Django + djcelery + redis 执行异步任务 安装 redis Mac 或 centos Mac redis 开机自启 Windows 安装 django-redis pip install django-redis pip ... continue reading django zhuoyuebiji 2019/12/15 677
Django + celery + redis 执行异步任务及查看结果(推荐) 官方文档 https://docs.celeryproject.org/en/latest/django/first-steps-with-django.html#using-celery-with-django(配置文档) ... continue reading django zhuoyuebiji 2019/12/15 3129
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 2009
Django + celery + beat 执行定时任务 开发环境 python 3.6.8 djang ... continue reading django zhuoyuebiji 2019/12/17 3184
Django 组装表名查询数据(动态表名、组合表名) 了解 getattr 函数 教程:https://www.runoob.com/python/python-func-getattr.html 描述 getattr() 函数用于返回一个对象属性值。 ... continue reading django zhuoyuebiji 2019/12/17 1038