标签:use 请求 sel for cts 查询 ted 外键 django
newses = News.objects.select_related(‘category‘, ‘author‘) # category和author字段为News表的外键, 使用select_related查询,会等待前端请求完毕后一次性查询出所有的数据
前端:
{% for news in newses %}
{{ news.category.name }}
{{ news.author.username }} # 这两个字段为外键
{% endfor %}
这样能减少查询的次数,提高效率
标签:use 请求 sel for cts 查询 ted 外键 django
原文地址:https://www.cnblogs.com/tangpg/p/9299415.html