我將我的TYPO3從7.6升級到8.6。 現在我不能通過style.content.get設置變量,我的根模板會加載fluid_styled_content。 一些來源:TYPO3流體變量
page.10 = FLUIDTEMPLATE
page.10 {
partialRootPath ={$resDir}/Private/Partials
layoutRootPath = {$resDir}/Private/Layouts
variables {
contentMain < styles.content.get
contentMain.select.where = colPos = 0
contentnew < styles.content.get
contentnew.select.where = colPos = 1
contentkat < styles.content.get
contentkat.select.where = colPos = 2
test = TEXT
test.value = loool
}
}
顯示變量:
<f:format.raw> {contentMain} </f:format.raw>
<f:format.raw> {contentnew} </f:format.raw>
<f:format.raw> {contentkat} </f:format.raw>
<f:format.raw> {test} </f:format.raw>
如果有人幫助你解答,請他將評論置於答案中,並接受和/或贊成,建議刪除你自己的答案,在我的解決方案中你的決定 – Gang
我建議使用'temp.content。 get',因爲所有以'temp.'開始的TS對象在執行渲染之前被移除,導致更小的配置數組。特別是對於複製的原型,在渲染時不需要知道。 –