作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我不明白《实用 Django 项目》第 87 页上的以下代码:
从 django.views.generic.list_detail 导入 object_list
def category_detail(request, slug):
category = get_object_or_404(Category, slug=slug)
return object_list(request, queryset=category.entry_set.all(),
extra_context={ 'category': category }))
entry_set
从哪里来?它在哪里定义的?谢谢。
最佳答案
这是created by the Entry
model .
If a model has a
ForeignKey
, instances of the foreign-key model will have access to aManager
that returns all instances of the first model. By default, thisManager
is namedFOO_set
, whereFOO
is the source model name, lowercased.
关于python - Django Entry_Set 定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5679408/
entry_set 是否应该与 select_related 一起缓存?即使在我使用 select_related 之后,我的数据库仍然接到电话。相关部分 class Alias(models.Mod
我不明白《实用 Django 项目》第 87 页上的以下代码: 从 django.views.generic.list_detail 导入 object_list def category_det
我是一名优秀的程序员,十分优秀!