首頁  >  文章  >  資料庫  >  如何在 Django 中使用 select_lated() 顯示多個表中的城市、州和國家/地區詳細資訊?

如何在 Django 中使用 select_lated() 顯示多個表中的城市、州和國家/地區詳細資訊?

Susan Sarandon
Susan Sarandon原創
2024-10-30 08:09:27748瀏覽

How to Display City, State, and Country Details from Multiple Tables Using select_related() in Django?

在Django 中連接多個表以顯示城市、州和國家

簡介

資料庫查詢通常涉及連接多個表表來存取相關資料。在 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() 的好處

  • 減少資料庫查詢次數。
  • 改善相關物件存取的效能。
  • 與原始 SQL 連線相比的簡單性和可讀性。

以上是如何在 Django 中使用 select_lated() 顯示多個表中的城市、州和國家/地區詳細資訊?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn