我不确定我是否使用了正确的术语:D
让我们想象我的后端布局如下:
backend_layout {
colCount = 1
rowCount = 1
rows {
1 {
columns {
1 {
name = Baguette
colPos = 0
}
}
}
}
}
我正在寻找一个看起来像这样的TypoScript:
[...]
variables {
title < ****the stuff i'm looking for***
title.select.where = colPos = 0
}
脚本应自动使用我的后端列的名称(&#34; Baguette&#34;)并将其保存到&#34;标题&#34; -variable。
然后我可以在我的模板中添加<f:format.raw> {title} </f:format.raw>
以在前端输出它。
是否存在类似的内容?
顺便说一下:因为我有很多列要输出多个标题,所以必须能够选择colPos。
答案 0 :(得分:0)
这不存在。标题仅在后端已知,并且在前端环境中不可用。
实际上,前端对后端网格一无所知。您在前端的所有内容都是列号。