Django 2.2 path、repath、include 注意事项 导入注意事项 Django 2.2 的 path 导入:from django.urls import path, re_path, include APP urls: 增加了 app_name Django 1.11 的 url from dj continue reading django zhuoyuebiji 2019/12/20 726
Django + celery + redis 执行异步任务及查看结果(推荐) 官方文档 https://docs.celeryproject.org/en/latest/django/first-steps-with-django.html#using-celery-with-django(配置文档) https://github.com/celery/cel continue reading django zhuoyuebiji 2019/12/15 3105
Django + djcelery + redis 执行异步任务 安装 redis Mac 或 centos Mac redis 开机自启 Windows 安装 django-redis pip install django-redis pip uninstall redis pip instal continue reading django zhuoyuebiji 2019/12/15 656
Django 提高网页打开速度 框架 CSS、JS 文件 使用 cdn 上的链接 所有框架类的 js 和 css 一律不用本地的,使用 bootcdn.cn(staticfile.org,jsdelivr.com 等) 上的链接,自己修改后的库可以买 oss、cdn 等加速了。 continue reading django zhuoyuebiji 2019/11/22 483
Django 获取 request 的 url 源代码路径 Lib\site-packages\django\http\request.py 获取带参数 URL ( django 1.11 居然报错了) request.get_full_path() print( continue reading django zhuoyuebiji 2019/11/21 832
Django 使用 celery 执行异步任务和定时任务 参考文档 https://docs.celeryproject.org/en/latest/django/first-steps-with-django.html Django 中使用 Celery Django 配置 Celery 执行异步任务和定时任务 Django 初步 continue reading django zhuoyuebiji 2019/11/18 69
Django redis 中文文档 🚀 https://django-redis-chs.readthedocs.io/zh_CN/latest/ django-redis 中文文档 Andrey Antukh, niwi@niwi.be 4.7.0 翻译: RaPoSpectre continue reading django zhuoyuebiji 2019/11/18 225
Django 撤回(删除) 表更新 操作步骤 没有建表(即没有执行 python manage.py migrate)的情况 进入到 app 下 的 migrations,删除最新 py 文件(有序号的,连续的)就可以,如果再次 migrations 没有成功,需要在 migrations 后面加上 app 的名称。 continue reading django zhuoyuebiji 2019/11/15 558
Django csrf 验证问题及 csrf 原理 相关文档 跨站请求伪造保护 (1.8 官方文档翻译) Cross Site Request Forgery protection (2.2 官方文档) django csrf 验证问题及 csrf 原理 django 前后端分离 csrf 验证的解决方法 django 进 continue reading django zhuoyuebiji 2019/11/14 374
Django form 里面获取 request 的数据 参考文档 https://www.zhangshengrong.com/p/2Y1klLdgaZ/ https://blog.csdn.net/BaskerShu/article/details/80591899 https://www.wandouip.com/t5i16468 continue reading django zhuoyuebiji 2019/11/12 91