访问flowtemplate中的tx_fed_pa​​ge_flexform

时间:2015-03-09 13:04:32

标签: typo3 fluid typo3-6.2.x

此问题与Access fluidpage configuration in template有关。

我尝试与上面的问题相同。但由于flux:flexform已过时并被flux:form取代,可能会有一些我不知道的变化。

使用以下代码,我尝试从菜单项:

访问flex:form.fields
<v:page.menu levels="1" as="sections">

        <ul class="main-navi">
            <f:for each="{sections}" as="section" iteration="iteration">

            <f:debug>{section}</f:debug>
            <flux:form.data table="pages" field="tx_fed_page_flexform" uid="{section.uid}" as="sectionData" />
            <f:debug>{sectionData}</f:debug>
                <li {f:if(condition: section.active, then: ' class="active"')}>
                    <f:link.page pageUid="{section.uid}" title="{section.linktext}">{ section.title}</f:link.page>
                    <div class="testmenu"></div>
                </li>
            </f:for>
        </ul>

</v:page.menu>

在调试部分(<f:debug>{section}</f:debug>)中,我看到了tx_fed_pa​​ge_flexform的值:

tx_fed_page_flexform => '<?xml version="1.0" encoding="utf-8" standalone="
      ;yes" ?> <T3FlexForms> <data> <sheet inde
      x="options"> <language index="lDEF">
      ; <field index="text"> &
      lt;value index="vDEF">test1234</value> &l
      t;/field> </language> </sheet> </d
      ata> </T3FlexForms>' (336 chars)

我搜索的值是test1234

但是当我调试sectionData(<f:debug>{sectionData}</f:debug>)时,我得到一个NULL

1 个答案:

答案 0 :(得分:0)

找到解决方案。要设置sectionData,请使用v:variable.setas中的flux:form.data似乎不起作用。

<v:variable.set name="sectionData" value="{flux:form.data(table:'pages', field:'tx_fed_page_flexform', uid:'{section.uid}')}" />