内插入换行符

发布于 2025-01-06 01:22:39 字数 522 浏览 3 评论 0原文

基本上我只是想将
(或等效的东西)添加到 的“value”属性,如下所示:

<p:commandButton value="#{aBean.text}" />  
<!-- #{aBean.text} returns for example "text1<br>text2" -->

遗憾的是,无法设置escape="false"。尝试添加自定义转换器也不起作用。我也尝试过这样做,但没有成功:

<p:commandButton>  
     <h:outputText escape="false" value="#{aBean.text}" />  
</p:commandButton>

在我看来,添加一个简单的换行符应该很容易,对吧?有人有解决方案吗?

Basically I am simply trying to add a <br> (or something equivalent) to the "value" attribute of a <p:commandButton> like this:

<p:commandButton value="#{aBean.text}" />  
<!-- #{aBean.text} returns for example "text1<br>text2" -->

Sadly, there is no possibility to set escape="false". Trying to add a custom converter didn't work, either. I have, without success, also tried to do it like this:

<p:commandButton>  
     <h:outputText escape="false" value="#{aBean.text}" />  
</p:commandButton>

In my opinion adding a simple line break should be easy enough, right? Does anyone have a solution for this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

扬花落满肩 2025-01-13 01:22:39

您需要使用 来表示 \n 的 XML 实体引用。

<p:commandButton value="text1
text2" style="white-space: pre;" />

white-space: pre; 上是强制的,但在 上不是强制的,因为PrimeFaces 将其生成为

You need to use which represents the XML entity reference for \n.

<p:commandButton value="text1
text2" style="white-space: pre;" />

The white-space: pre; is mandatory on <p:commandButton>, but not on <h:commandButton>, because the PrimeFaces one generates it as a <button type="submit"><span> instead of a <input type="submit">.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文