在 Spring MVC 中通过 JSTL 显示 html
我的控制器中有类似的东西
model.addAttribute("msg", "<b>akhil</b>");
return "index";
。
在我的视图页面中,我写了
<body>
<h2>Hello World!</h2>
<c:out value="${msg}" />
</body>
But the output is akhil</b>
与 gt;akhil.
为什么是这样吗?应该怎样做才能获得akhil
。
I have something like
model.addAttribute("msg", "<b>akhil</b>");
return "index";
in my Controller.
In my view page I wrote
<body>
<h2>Hello World!</h2>
<c:out value="${msg}" />
</body>
But the output is <b>akhil</b>
as against <b>akhil</b>.
Why is it so and what should be done to get <b>akhil</b>
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是因为
对字符'<'
和>
使用 XML 转义。设置
c:out
的选项escapeXml=false
以粗体字母输出文本:This is because
<c:out>
uses XML escaping for the characters'<'
and>
.Set the option
escapeXml=false
ofc:out
to output your text in bold letters: