0

我有一页 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 来做什么?)http://loalhost/index.jsf?page=a 但如果我使用更漂亮的 url 或漂亮的面孔,我会为 if-else 语句做什么?如果(?? = a)

2个问题请帮我谢谢

  ==========================================================

现在我设置了漂亮的面孔并且工作良好,但我不知道如何从 Prettyfaces 获取参数,在 Pretty-config.xml 我是配置页面如下:

主页(内容变化动态在那里)

<url-mapping id="mainpage">
 <pattern value="/home" />
 <view-id>/faces/main.xhtml</view-id> 
</url-mapping>

第1页

<url-mapping id="mainpage">
 <pattern value="/home/#{page:content1}" />
 <view-id>/faces/content1.xhtml</view-id> 
</url-mapping>

第2页

<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;
      } 
}

但我无法在一页中更改动态页面查看内容

4

1 回答 1

0

如果我正确理解了您的问题,那么您的问题与 PrettyFaces 无关。

您希望最终得到共享相同页眉和页脚的不同页面是否正确?在这种情况下,您应该真正了解使用 Facelets 进行模板化,因为这正是它的一个用例。

这里有一个关于 Facelets 如何工作的简短示例:

template.xhtml

<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:ui="http://java.sun.com/jsf/facelets">
<head>
  <title>
    <ui:insert name="title" />
  </title>
  <link rel="stylesheet" type="text/css" href="./css/main.css"/>
</head>

<body>

<div id="center">
  <ui:insert name="title" />
  <hr />
  <ui:insert name="content" />
</div>

</body>

</html>

some-page.xhtml

<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:ui="http://java.sun.com/jsf/facelets"
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:f="http://java.sun.com/jsf/core">

<ui:composition template="/template.xhtml">
  <ui:define name="title">My Page Title</ui:define>
  <ui:define name="content">

    <p>
      This is the main content area
    </p>

  </ui:define>
</ui:composition>
</html>

我建议阅读Facelets 像手套一样适合 JSF。这是一篇关于 Facelets 的非常棒的文章。

于 2011-12-25T10:25:02.320 回答