在 IceFaces 上显示 html 格式的文本
我正在数据库中保存 html 和/或富格式文本,并且尝试在 IceFaces 文本字段中显示它,但它没有显示正确的格式(换行符或 url)。
是否有标签或组件可以向我显示正确的富文本或 html 格式?
谢谢!
I'm saving html and/or rich formated text in a database, and I'm trying to show it in an IceFaces text field, but it doesn't show the propper format (line breaks or urls).
Is there a tag or a component that shows me the proper rich text or html format?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试:
ice:outputText value="#{your.bean}" escape="false"
try :
ice:outputText value="#{your.bean}" escape="false"
我只找到了这个可以在 ICEfaces 页面内创建 HTML 的解决方案,使用 Facelets 的输出:
这会将您的 HTML 注入页面中并像您在页面内编写它一样处理它。 尽管如此,您必须测试所有换行符是否都已正确处理。
I only found this solution that can create HTML inside an ICEfaces page, use the output of Facelets:
This injects your HTML in the page and processes it like you have written it inside the page. Although, you have to test if all line breaks are processed correctly.
事实上,这比我想象的要容易得多......
要使用 ICEFaces 正确输出保存在数据库中的 HTML,您只需使用
标签,并在 value 属性中使用#{backBean.object.html_txt_field}
,如下所示:这就是全部:)
Actually, it's a lot easier than I thought...
To properly output HTML saved on a database using ICEFaces you just have to use the
<ice:outputLabel/>
tag, and use in the value attribute#{backBean.object.html_txt_field}
, like this:And that was all :)