最新 最热

Django + djcelery + redis 执行异步任务

pip install redis==2.10.6(解决 启动 celery 错误:AttributeError: 'str' object has no attribute 'items',详情)

2023-02-18
1

Django + celery + beat 执行定时任务

/root/.virtualenvs/blog/bin/celery multi start w1 -A joyoo -l info --logfile=./celerylog.log

2023-02-18
1

python pip 常用命令

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple django

2023-02-18
1

django 获取 request 的 url

print(request.get_full_path())                             ^ SyntaxError: invalid character in identifier

2023-02-18
1

404 页面使用腾讯公益 404

http://doc.codingdict.com/django/topics/http/views.html#customizing-error-views

2023-02-18
1

django csrf 验证问题及 csrf 原理

1. 直接请求接口,拿到 csrf_token,设置路由为 /get_csrf_token

2023-02-18
1

django request 获取请求的 IP 地址

资料文档PyPi: https://pypi.org/project/django-ipware/github: https://github.com/un33k/django-ipware安装第三方库 pip install django-ipwareview 里调用一般用法:from ipware....

2023-02-18
1

django 富文本编辑的种类

django 富文本编辑的种类ckeditor(推荐)tinymceueditor...ckeditor官网:https://ckeditor.com/安装:https://xieboke.net/article/7/文档:https://django-ckeditor.readthedocs.io/e...

2023-02-18
1

django-simple-captcha 图形验证码使用总结

captcha_text_field.html(加了一个 placeholder)

2023-02-18
1

Django MemCache 缓存使用方法和源码

python3.6/site-packages/django/core/cache/backends/locmem.py

2023-02-18
1