struts 2 s:属性标签
我有一个输出到 JSP 页面的字符串列表。我使用 s:iterate 和 s:property 的组合将字符串列表写入页面。某些字符串包含 HTML 格式,但目前它们作为文本写入页面,而不是呈现为 HTML。如何将此文本输出到呈现 HTML 的页面。
例如(如果 HTML 呈现,我没有在下面编写适当的标签)
一些文本 更多文本这应该是 [bold] 粗体 [/bold]
I have a list of strings that I output to a JSP page. I use a combination of s:iterate followed by s:property to write out the list of strings to the page. Some of the strings contain HTML formatting but currently they get written to the page as text and not rendered as HTML. How can I output this text to the page with the HTML rendered.
For example (incase the HTML renders I am not writing appropriate tags below)
some text more text this should be [bold]in bold[/bold]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加 escape 属性,如下所示:
这告诉 struts 不要转义属性内的 html。
Add the escape attribute, like so:
This tells struts not to escape the html inside the property.