is not interpreted as passthrough element

前端 未结 1 1557
深忆病人
深忆病人 2021-01-13 19:42

I don\'t understand why this piece of code is working:


相关标签:
1条回答
  • 2021-01-13 20:14

    A HTML element will only become a passthrough element if following conditions are met:

    1. There's at least one jsf:xxx attribute from http://xmlns.jcp.org/jsf namespace.
    2. There's at least one "identifying attribute" associated with a specific JSF component.

    For the <a> element an identifying attribute is necessary so JSF can decide whether to interpret it as <h:commandLink>, <h:outputLink> or <h:link>. Without an identifying attribute, JSF wouldn't have any idea what component you actually meant to use, so any jsf:xxx attributes will be ignored. The jsf:rendered is not sufficient as identifying attribute because it appears on every single JSF component, so JSF would still have no idea which one you meant.

    Given that you seem to intend to have a <h:link>, then use jsf:outcome as identifying attribute.

    <a jsf:outcome="login" jsf:rendered="#{empty sessionBean.userInSessionBean}">Login</a>
    

    A completely different alternative is to wrap plain HTML in an <ui:fragment rendered>. See also How to conditionally render plain HTML elements like <div>s?

    0 讨论(0)
提交回复
热议问题