Typo3 类型3:如何在Fluid/ExtBase中呈现后端列的标题?

Typo3 类型3:如何在Fluid/ExtBase中呈现后端列的标题?,typo3,title,backend,typoscript,fluid,Typo3,Title,Backend,Typoscript,Fluid,我不确定我是否使用了正确的术语:D 假设我的后端布局如下所示: backend_layout { colCount = 1 rowCount = 1 rows { 1 { columns { 1 { name = Baguette colPos = 0 } } } }

我不确定我是否使用了正确的术语:D

假设我的后端布局如下所示:

backend_layout {
   colCount = 1
   rowCount = 1
   rows {
       1 {
           columns {
               1 {
                   name = Baguette
                   colPos = 0
               }
           }
       }
   }   
}
[...]
variables {
   title < ****the stuff i'm looking for***
   title.select.where = colPos = 0
}
我在找一个类似这样的打字稿:

backend_layout {
   colCount = 1
   rowCount = 1
   rows {
       1 {
           columns {
               1 {
                   name = Baguette
                   colPos = 0
               }
           }
       }
   }   
}
[...]
variables {
   title < ****the stuff i'm looking for***
   title.select.where = colPos = 0
}
[…]
变数{
标题<****我要找的东西***
title.select.where=colPos=0
}
脚本应该自动获取我的后端列(“Baguette”)的名称,并将其保存到“title”变量中。 然后我可以简单地在我的模板中添加
{title}
,将其输出到前端

这样的东西存在吗?


顺便说一句:必须能够选择colPos,因为我有许多列和许多标题要输出。

这不存在。标题仅为后端所知,在前端上下文中不可用

实际上,前端对后端网格一无所知。前端中只有列号