我使用h:link
withincludeViewParams=true
在我的列表和查看页面之间导航,并使查看页面 URL 可收藏,但它不起作用。以下是我的代码的相关部分:
在 layout.xhtml (我的模板)中:
<f:view locale="#{localeBean.lang}">
<ui:insert name="metadata"/>
在 Articles.xhtml(我的列表页面)中:
<h:form>
<p:datagrid var="item" value="articleController.items">
<p:column>
<h:link outcome="View_Articles?faces-redirect=true&includeViewParams=true" styleClass="view-details">
<h:outputText value="#{item.title}"/>
<f:param name="id" value="#{item.articleId}"/>
</h:link>
</p:column>
</p:datagrid>
</h:form>
在 View_Article.xhtml(我的查看详情页面)中:
<ui:composition template="./WEB-INF/templates/layout.xhtml">
<ui:define name="metadata">
<f:metadata>
<f:viewParam name="id" value="#{articleController.id}" />
<f:viewParam name="id" value="#{articleLclController.id}"/>
</f:metadata>
</ui:define>
更多信息:我使用 JSF 2.2、ocpsoft 重写过滤器、primefaces 库,并且ArticleController.java
是会话范围的。
我尝试了以下方法:
1- 我用过h:commandLink
;有了这个,导航工作,但 URL 不包含视图参数
文章.xhtml:
<h:commandLink id="viewArticleDetails" action="#{articleController.viewArticleByID()}" styleClass="view-details">
<h:outputText value="View Details"/>
<f:setPropertyActionListener target="#{articleController.id}" value="#{item.articleId}"/>
<f:setPropertyActionListener target="#{articleLclController.id}" value="#{item.articleId}"/>
</h:commandLink>
ArticleController.java: ...
private Long id;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
current = ejbFacade.find(id);
}
public String viewArticleByID(){
return "View_Article?faces-redirect=true&includeViewParams=true";
}
...
我希望 URL 是,http://localhost:8080/testApp/en/View_Article?id=1
但它就像`http://localhost:8080/testApp/en/View_Article
2-我插入http://localhost:8080/testApp/en/View_Article?id=1
并且它在两种情况下都有效。