如何在 JSF 2.0 中重定向

发布于 2024-09-28 02:21:31 字数 336 浏览 2 评论 0原文

I want to redirect from a link in a JSF page, how can I do it?

In HTML I can use <a> tag for this. But in JSF I use <h:outputLink> or <h:commandLink> as they can be conditionally rendered. I want redirect link to other page in same application or to an external URL. How can I do it with JSF? How can I use action in <h:commandLink> for this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

叫思念不要吵 2024-10-05 02:21:31

假设您想要重定向到位于 Web 根文件夹中的 some.xhtml

  1. 您可以继续使用纯 HTML。

     转到某个页面
    

    对于条件渲染,只需将其包装在 <代码>.

    <小时>

  2. 或者使用 进行隐式导航。

     
    

    注意:不需要预先考虑上下文路径,也不需要包含 FacesServlet 映射。

    <小时>

  3. 或者将 ?faces-redirect=true 一起使用。

     
    

    注意:无需预先添加上下文路径,也无需包含 FacesServlet 映射。

    <小时>

  4. 或者使用,但需要指定上下文路径。

     
    

    <小时>

重定向到外部 URL 已在此副本中得到解答:重定向到 JSF 中的外部 URL< /a>.

另请参阅:

Assuming that you'd like to redirect to some.xhtml which is placed in web root folder:

  1. You can just continue using plain HTML.

     <a href="#{request.contextPath}/some.xhtml">go to some page</a>
    

    For conditional rendering, just wrap it in an <ui:fragment>.


  2. Or use <h:link> with implicit navigation.

     <h:link outcome="/some" value="go to some page" />
    

    Note: no need to prepend context path nor to include FacesServlet mapping.


  3. Or use <h:commandLink> with ?faces-redirect=true.

     <h:commandLink action="/some?faces-redirect=true" value="go to some page" />
    

    Note: no need to prepend context path nor to include FacesServlet mapping.


  4. Or use <h:outputLink>, but you need to specify context path.

     <h:outputLink value="#{request.contextPath}/some.xhtml" value="go to some page" />
    

Redirecting to an external URL is already answered in this duplicate: Redirect to external URL in JSF.

See also:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文