私は完全に正常に動作するいくつかの ViewHelpers を作成しましたが、メインセクションでのみ... 理解を深めるために:
<f:section name="Configuration">
<flux:field.select name="first" label="first" items="{0: '10', 1: '40'}"/>
<flux:field.select name="second" label="second" items="{myViewHelpers:load()}"/>
</f:section>
<f:section name="Preview">
</f:section>
<f:section name="Main">
{myViewHelpers:load()}
</f:section>
{myViewHelpers:load()}
たとえば、文字列を返します
{0: '10', 1: '40'}
Main-Section ではこれは完全に機能しますが、Configuration-section で同じ ViewHelper を使用すると、バックエンドが読み込まれなくなります...通常は要素が発生する Typo3 で空白のフィールドしか取得しません。
何か提案があればよろしくお願いします!