我想从i18n捆绑包(seam中的messages.properties)中检索消息信息,但是我不确定如何在我的xhtml中动态传递声明/动态传递jobCount变量

现有代码如下所示。

<s:decorate template="/layout/panel-name.xhtml">
    <ui:define name="label">User has been assigned #{jobCount} jobs</ui:define>
</s:decorate>

最佳答案

我认为这应该工作:

<h:outputFormat value="#{msg.yourMessage}">
  <f:param value="#{myBean.jobCount}" />
</h:outputFormat>

09-28 06:36