Play框架消息中的html标记

时间:2012-09-24 13:04:12

标签: playframework playframework-2.0

我在Play中使用国际化消息文件。在我的messages.en文件中,我有:

support.msg=Click here to contact <a href="support.html">support</a>

但是输出为

&lt;a href=&quot;support.html&quot;&gt;support&lt;/a&gt;

是否可以在messages.en文件中转义html,以便按“原样”输出

1 个答案:

答案 0 :(得分:15)

默认情况下,播放!自动转义视图中使用的字符串。如果您想输出原始文本(包括HTML),请将变量包装在Html()

Example from the docs

<p>
  @Html(article.content)    
</p>