簡介
資料庫查詢通常涉及連接多個表表來存取相關資料。在 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() 執行內連接要執行內連接,可以使用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中文網其他相關文章!