Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在我的 FCE 中获取表记录列表。在文档中,我发现“项目”部分可以使用查询。但我找不到让它工作的方法。
<flux:field.select name="myRecord" items="NOTHING WORKS HERE" label="Choose" maxItems="1" minItems="1" size="5" multiple="false" />
有人知道如何用表格记录填充这些项目吗?
如果您试图获得包含所有项目的选择框,那么您可以切换到此:
<flux:field.relation size="1" minItems="0" table="tx_{YourExtensionName}_domain_model_{YourObjectName}" maxItems="1" name="package"> </flux:field.relation>
当然,您可以使用数据库中的任何表,例如“页面”..
希望能帮助到你!