【发布时间】:2018-11-27 07:32:20
【问题描述】:
我正在使用一个简单的扩展,它在 f:select 中显示域对象的属性列表。使用下拉菜单后,表单重定向到控制器操作,存储库根据参数选择的属性获取所有记录。
<f:form class="filter-select" name="filter-select" method="post" action="showByProperty" pageUid="{settings.detailShowByProperty}">
<f:form.select name="filter-form" options="{properties}" optionLabelField="title" optionValueField="uid" prependOptionLabel="Please choose..." prependOptionValue="0" />
<button>
Show matching records
</button>
如何使用带有选择字段的路由增强器来创建如下网址:
http:www.mysite.com/detailpage/property
尤其是我不知道如何附加属性/参数。
提前致谢!
【问题讨论】:
标签: typo3-9.x