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.
我正在使用 JSF 2 和 RichFaces。我可以将一些值从 bean 传递给 a4j:commandButton 中的 oncomplete 函数吗?例如一些计数器(int)。
你可以在那里使用EL。它是根据每个请求进行评估的。
<a4j:commandButton ... oncomplete="someFunction(#{bean.someIntProperty})" />
请注意,此功能特定于 RichFaces 组件。标准 JSF 组件(和 PrimeFaces)将仅在每个视图构建时评估它们。