gpt4 book ai didi

jsf - 为什么不是我的 f :param rendering inside h:outputText?

转载 作者:行者123 更新时间:2023-12-04 17:13:12 25 4
gpt4 key购买 nike

我有一个 message.properties 文件,其中包含:

success_text=How cool... You have guessed the number.  {0} is correct! 

I have a JSF which contains:

<h:outputText value="#{msg.success_text}" >
<f:param value="#{numberBean.userNumber}" />
</h:outputText>

不管 的值是什么,HTML 都会出来:

How cool... You have guessed the number. {0} is correct!



为什么不是 {0}更改为 <f:param> 中指示的值我该如何解决?

最佳答案

<f:param> <h:outputText> 不支持.它适用于 <h:outputFormat> 只要。

<h:outputFormat value="#{msg.success_text}" >
<f:param value="#{numberBean.userNumber}" />
</h:outputFormat>

关于jsf - 为什么不是我的 f :param rendering inside h:outputText?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4160073/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com