django的小操作,查询
Posted tangpg
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了django的小操作,查询相关的知识,希望对你有一定的参考价值。
newses = News.objects.select_related(‘category‘, ‘author‘) # category和author字段为News表的外键, 使用select_related查询,会等待前端请求完毕后一次性查询出所有的数据
前端:
{% for news in newses %}
{{ news.category.name }}
{{ news.author.username }} # 这两个字段为外键
{% endfor %}
这样能减少查询的次数,提高效率
以上是关于django的小操作,查询的主要内容,如果未能解决你的问题,请参考以下文章