我有一个需要 GET 参数(int id)的参数。也有一些文本字段(用于过滤)
<h:form>
//some textfields
<h:commandButton value="Anwenden" actionListener="#{bean.acceptFilters}" action="">
<f:param name="id" value="#{bean.logbookId}" />
</h:commandButton>
<h:form>
现在,我有两个问题:
- 我需要一个 GET-Request 来允许为搜索结果添加书签(如谷歌)
- 当我发布表单时,参数“id”也不会在 URL 中传递(但是必需的)
当我单击提交时,url 中的参数会丢失...它们在内部存在。