如何在一页中创建动态视图
我有一页index.jsf,我使用 ui:include 包含页眉和页脚,我想动态查看内容,这意味着当用户单击注册链接时,仅内容更改页眉和页脚没有更改
我的图像我的代码示例是:
<ui:include render="#{mybean.include}"/>
在支持 bean 中,我的代码将:
public void getInclude(){
if("page" == a){
return "a.jsf";
}
else if("page" == b) {
return "b.jsf";
}
}
并且我使用漂亮的 url 示例 以旧的方式 jsf 页面将显示 url
http://localhost/index.jsf?page=a or http://localhost/index.jsf?page=b
,但我想使用漂亮的 url 而不是旧的方式,例如:
http://localhost/index/a
我该怎么做(这意味着使用漂亮的面孔以及我如何使用 if-else 做什么?) 我可以在这里解释上面的问题 而不是上面我使用 if("page"=a) 如果我使用旧方式粘贴参数 url http:// loalhost/index.jsf?page=a 但如果我使用漂亮的网址或漂亮的面孔,我会为 if-else 语句做什么? if(?? = a)
2个问题请帮助我谢谢
==========================================================
现在我设置了漂亮的面孔并且工作良好,但我不知道如何从 Prettyfaces 获取参数,在 Pretty-config.xml 中我的配置页面如下:
主页(内容在那里更改动态)
<url-mapping id="mainpage">
<pattern value="/home" />
<view-id>/faces/main.xhtml</view-id>
</url-mapping>
第一页中的第一页
<url-mapping id="mainpage">
<pattern value="/home/#{page:content1}" />
<view-id>/faces/content1.xhtml</view-id>
</url-mapping>
第二页
<url-mapping id="mainpage">
<pattern value="/home/#{page:content2}" />
<view-id>/faces/content2.xhtml</view-id>
</url-mapping>
我使用 ui:include 作为动态子视图
<ui:include src=#{bean.includePage}/>
我的 bean 有一种获取包含页面的方法
public String getIncludePage(){
if(page == null){
return "content.xhtml";
}
else if (page.equals(content1)){
return "content1.xhtml";
}
else if (page.equals(content2)){
return "content2.xhtml;
}
}
但我无法更改一页中的动态页面视图内容
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我正确理解你的问题,你的问题与 PrettyFaces 无关。
您希望最终获得共享相同页眉和页脚的不同页面是否正确?在这种情况下,您应该真正了解 Facelets 的模板化,因为这正是它的一个用例。
下面是有关 Facelets 如何工作的简短示例:
template.xhtml
:some-page.xhtml
:我建议阅读 Facelets 像手套一样适合 JSF。这是一篇关于 Facelets 的非常棒的文章。
If I understood your question correctly your problem has nothing to do with PrettyFaces.
Is it correct that you want to end up with different pages which share the same header and footer? In this case you should really learn about templating with Facelets because this is exactly an usecase for it.
Here a short example on how Facelets work:
template.xhtml
:some-page.xhtml
:I recommend to read Facelets fits JSF like a glove. It's an really great article on Facelets.