在JSP中,如何输出“

发布于 2024-08-15 08:44:05 字数 334 浏览 4 评论 0原文

我的 Struts2 操作中有一个字符串 var,如下所示:

String tmp = "<br/>";

我想通过 JSP 将其作为 HTML 标记打印到 html 页面,如下所示:

<s:property value="tmp"/>

但是,在 html 页面中, <> 被翻译为 &lt;&gt; 我不想这样做。

那么我应该怎么做呢?

I have a string var in my Struts2 action, like this:

String tmp = "<br/>";

I want to print it out to the html page as HTML tag by JSP, like this:

<s:property value="tmp"/>

But, in the html page, the < and > was translated to < and > which i don't want to.

So how should I do this?

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

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

发布评论

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

评论(3

烧了回忆取暖 2024-08-22 08:44:05

有一个 escape 属性 它确定该值是否是 HTML 转义的。默认值为 true,因此这就是您的
被转义的原因。

所以你可以这样做:

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

<s:property> has an escape attribute which determines if the value is HTML-escaped. The default is true, so that's why your <br/> is being escaped.

So you can do something like this:

<s:property value="tmp" escape="false"/>
只为一人 2024-08-22 08:44:05

如果您使用 JSTL,则 c:out 标记有一个 escapeXml 属性,您可以将其设置为 false。

If you use JSTL then the c:out tag has an escapeXml attribute you can set to false.

疯了 2024-08-22 08:44:05

您只需使用 OGNL 即可完成此操作:

${tmp}

有关更多信息,请访问 docs 页面

You can do it just using OGNL:

${tmp}

For more information visit the docs page

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