最新 最热

在 django generic.DetailView 里设置缓存(重写 get_object )

# ..Libsite-packagesdjangoviewsgenericdates.py

2023-02-18
1

Celery ValueError: not enough values to unpack (expected 3, got 0) 的解决方法(windows)

网上检索到资料 https://github.com/celery/celery/issues/4081

2023-02-18
1

Django debug=False 时能找到静态文件的几种方式(静态文件找不到)

--help: --insecure   Allows serving static files even if DEBUG is False.

2023-02-18
1

django 通用导航栏选中状态实现(前后端不分离)

通过当前的 url 地址来判断 li 的 class 是否需要 active (激活状态)

2023-02-18
1

django ListView 获取 url 中的参数及根据参数使用不同的模板

from django.views import genericclass IndexView(generic.ListView): template_name = 'lw-index-noslider.html' # 默认加载该模板文件 context_object_name = "artic...

2023-02-18
1

django uwsgi 错误日志分析例子

一般能看到:--- no python application found, check your startup logs for errors ---,基本上是配置出错了,无法正常启动 uwsgi。

2023-02-18
1

解决:安装 django-celery-beat 自动把 django 升级到 3.0 了

安装 beat 日志(joyoo) E:yinzhuoqundjangosjoyoo>pip install django-celery-beatCollecting django-celery-beat Downloading https://files.pythonhosted.org/packa...

2023-02-18
1

celery 报错:Received unregistered task of type 'apps.share.tasks.post_to_beiqia'.

本机有多个 django 项目,另外个项目也是用过 celery,“apps.share.tasks.post_to_beiqia”是另一个 django 项目的 task,所以说是 celery 找到了另外个项目的任务了,为什么能找到,猜想是 中间人是同一个(同 redis 同库),那么...

2023-02-18
0

django 2.2 path、repath、include 注意事项

导入:from django.urls import path, re_path, include

2023-02-18
1

django 模板获取 for 循环前 N 条数据

forloop.counter:当前迭代从 1 开始,就用它来判断当前循环的次数,加上 if 就可以只显示 N 条了

2023-02-18
1