Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试过下面的代码
<h:form rendered="{#{cars.enabled} and #{cars.enabledEdit}}">
但这不起作用。
这是一个正确的 EL 表达式
<h:form rendered="#{cars.enabled and cars.enabledEdit}">
不需要(甚至在 #{} 中使用 #{} 也是非法的)