나뭇 가지 파일이 있습니다 : views-view-unformatted--view-machine-name.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
*/
#}
{% if title %}
<h3>{{ title }}</h3>
{% endif %}
{% for row in rows %}
{%
set row_classes = [
default_row_class ? 'views-row',
]
%}
<div{{ row.attributes.addClass(row_classes) }}>
{{ row.content }}
</div>
{% endfor %}
다음 과 같이 쉼표로 구분하여 1 행에 Title
있고 body
필드 를 갖고 싶습니다.
제목, 본문
디버깅하는 동안이 뷰에서 'title'또는 'body'또는 다른 필드의 값을 얻으려면 어떻게해야합니까?
kint (title)와 kint (body)를 사용했지만 작동하지 않습니다. debug = TRUE;
서비스 파일 도 만들었 습니다.
그러나 형식화되지 않은 html 나뭇 가지에서 필드 값을 갖는 방법을 알 수는 없습니다.