2

我试过下面的代码

   <h:form rendered="{#{cars.enabled} and #{cars.enabledEdit}}">

但这不起作用。

4

1 回答 1

8

这是一个正确的 EL 表达式

<h:form rendered="#{cars.enabled and cars.enabledEdit}">

不需要(甚至在 #{} 中使用 #{} 也是非法的)

于 2013-03-04T11:48:04.183 回答