简介
数据库查询通常涉及连接多个表表来访问相关数据。在 Django 中,可以使用 select_lated() 方法来实现此类连接。本文演示如何使用 select_lated() 在 Django 中执行内部联接并显示与出版物关联的城市、州和国家的名称。
连接模型中的表
models.py 文件定义不同表的数据库模型类:
<code class="python">class Country(models.Model): country_name = models.CharField(max_length=200, null=True) class CountryState(models.Model): state_name = models.CharField(max_length=200, null=True) country = models.ForeignKey(Country, on_delete=models.CASCADE, null=True) class City(models.Model): city_name = models.CharField(max_length=200, null=True) countrystate = models.ForeignKey(CountryState, on_delete=models.CASCADE, null=True) class Publication(models.Model): country = models.ForeignKey(Country, on_delete=models.CASCADE, null=True) countrystate = models.ForeignKey(CountryState, on_delete=models.CASCADE, null=True) city = models.ForeignKey(City, on_delete=models.CASCADE, null=True)</code>
在视图中获取出版物
The Publications() views.py 中的 view 获取出版物:
<code class="python">def publications(request): mypublications = publication.objects.filter(user_id=request.session['account_id']) return render(request, 'blog/mypublications.html', {'plist': mypublications})</code>
使用 select_lated() 执行内连接
要执行内连接,可以使用 select_lated() 方法如下所示:
<code class="python">pubs = publication.objects.select_related('country', 'country_state', 'city')</code>
此行将 Publication 表与 Country、CountryState 和 City 表连接起来,并预加载它们以供以后使用。
访问相关数据
执行连接后,您可以通过模型对象访问相关数据。例如,在模板中:
<code class="html">{% for p in pubs %} {{ p.city.city_name}} # p.city has been populated in the initial query # ... {% endfor %}</code>
使用 select_lated() 的好处
以上是如何在 Django 中使用 select_lated() 显示多个表中的城市、州和国家/地区详细信息?的详细内容。更多信息请关注PHP中文网其他相关文章!