Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Play 中使用国际化消息文件。在我的 messages.en 文件中,我有:
support.msg=Click here to contact <a href="support.html">support</a>
但这会输出为
<a href="support.html">support</a>
是否可以在 messages.en 文件中转义 html,以便它们“按原样”输出
默认情况下,播放!自动转义视图中使用的字符串。如果您想输出原始文本(包括 HTML),请将变量包装在Html().
Html()
文档中的示例:
<p> @Html(article.content) </p>