1
我試圖打印出一個視圖,逐個字段,以便我可以將其樣式應用於其中並自定義其外觀。Drupal 8 - 訪問模板中內容變量的_entity以打印出內容
當我拷貝過來的意見 - 視圖 - 格式化 - MY-TEMPLATE.html.twig 我可以看到在默認視圖這些變量:
{#
/**
* @file
* Default theme implementation to display a view of unformatted rows.
*
* Available variables:
* - title: The title of this group of rows. May be empty.
* - rows: A list of the view's row items.
* - attributes: The row's HTML attributes.
* - content: The row's content.
* - view: The view object.
* - default_row_class: A flag indicating whether default classes should be
* used on rows.
*
* @see template_preprocess_views_view_unformatted()
*
* @ingroup themeable
*/
#}
使用後{{編制品(含量)} },我可以看到我有一個 _entity字段顯示
但我無法弄清楚如何打印出這些特定的領域,甚至使用編制品,以瞭解如何將它們分開。我嘗試做這樣的事情:
{{ kint(content._entity) }}
無濟於事,和其他方法試圖打印出來噸。
任何幫助表示讚賞!
我通過使用不同的視圖模板解決了我的問題,但我相信我應該能夠這樣做,所以我會保持這個問題的開放。 – Kato
您是否嘗試過content.entity? – Eyal