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 3125
Django + djcelery + redis 执行异步任务 安装 redis Mac 或 centos Mac redis 开机自启 Windows 安装 django-redis pip install django-redis pip ... continue reading django zhuoyuebiji 2019/12/15 672
Django 获取字段选项 choice 的值 choices 由二项元组构成的一个可迭代对象(例如,列表或元组),用来给字段提供选择项。 如果设置了choices ,默认的表单将是一个选择框而不是标准的文本框,而且这个选择框的选项就是choices 中的选项。 这 ... continue reading django zhuoyuebiji 2019/11/26 3157
Django 提高网页打开速度 框架 CSS、JS 文件 使用 cdn 上的链接 所有框架类的 js 和 css 一律不用本地的,使用 bootcdn.cn(staticfile.org,jsdelivr.com 等) 上的链接,自己修 ... continue reading django zhuoyuebiji 2019/11/22 500
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 856
Django 使用 celery 执行异步任务和定时任务 参考文档 https://docs.celeryproject.org/en/latest/django/first-steps-with-django.html Django 中使用 Celery Django 配置 ... continue reading django zhuoyuebiji 2019/11/18 83
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 240
Django 撤回(删除) 表更新 操作步骤 没有建表(即没有执行 python manage.py migrate)的情况 进入到 app 下 的 migrations,删除最新 py 文件(有序号的,连续的)就可以,如果再次 migrations 没有成功 ... continue reading django zhuoyuebiji 2019/11/15 569
Django csrf 验证问题及 csrf 原理 相关文档 跨站请求伪造保护 (1.8 官方文档翻译) Cross Site Request Forgery protection (2.2 官方文档) django csrf 验证问题及 csrf 原理 django ... continue reading django zhuoyuebiji 2019/11/14 392
Django form 里面获取 request 的数据 参考文档 https://www.zhangshengrong.com/p/2Y1klLdgaZ/ https://blog.csdn.net/BaskerShu/article/details/80591899 htt ... continue reading django zhuoyuebiji 2019/11/12 104