struts 2 s:属性标签

发布于 2024-10-14 07:28:42 字数 209 浏览 0 评论 0原文

我有一个输出到 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 技术交流群。

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

发布评论

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

评论(1

下雨或天晴 2024-10-21 07:28:42

添加 escape 属性,如下所示:

<s:property value="myvar" escape="false" />

这告诉 struts 不要转义属性内的 html。

Add the escape attribute, like so:

<s:property value="myvar" escape="false" />

This tells struts not to escape the html inside the property.

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