ฉันมีไฟล์กิ่งไม้: 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 %}
ฉันต้องการที่จะมีTitle
และbody
ฟิลด์จะอยู่ใน 1 บรรทัดคั่นด้วยเครื่องหมายจุลภาคเช่น:
ชื่อเรื่องร่างกาย
ฉันจะรับค่า 'ชื่อ' หรือ 'เนื้อหา' หรือฟิลด์อื่น ๆ ในมุมมองนี้ขณะทำการดีบักได้อย่างไร
ฉันใช้ kint (ชื่อเรื่อง) และ kint (เนื้อความ) แต่ไม่ทำงาน ฉันยังทำdebug = TRUE;
ในไฟล์บริการ
แต่ไม่สามารถหาวิธีที่จะให้ค่าฟิลด์เป็นทวิ html ที่ไม่จัดรูปแบบ