0
請幫助引入對象的模板屬性。如何從物體中獲取屬性?
通常一組我通過「FOR」推斷循環性能對象:
{% for entrie in news_all %}
<br /><strong>{{ entrie.title }}</strong>
{% endfor %}
,但現在我會傳遞給模板僅僅是一個對象,所以沒有必要使用一個循環
請幫助引入對象的模板屬性。如何從物體中獲取屬性?
通常一組我通過「FOR」推斷循環性能對象:
{% for entrie in news_all %}
<br /><strong>{{ entrie.title }}</strong>
{% endfor %}
,但現在我會傳遞給模板僅僅是一個對象,所以沒有必要使用一個循環
剛剛獲得使用dot notation對象場:{{ entrie.title }}
(假設entrie
在模板環境傳送)。
不過,如果你傳遞一個查詢集的背景下,objects.filter()
的結果,例如,只包含一個對象,你仍然可以使用點符號:首先從queryset
,然後屬性獲得的第一個元素/ field:
{{ entries.0.title }}
查看一些示例here。
希望有所幫助。