Play 2.0 - 如何使Play停止解析模板注释中的代码?

时间:2012-04-22 06:18:58

标签: playframework-2.0

如果我有一些错误的代码,在Play中的*scala.html模板文件中注释,它会在编译期间给出错误。如何让Play明白这只是一个评论?

1 个答案:

答案 0 :(得分:1)

Server side comments in Play应该写成(我已经多次使用它们而没有任何编译问题):

@* your comment here *@

但是根据以下帖子(http://stackoverflow.com/questions/6398059/what-is-the-server-side-comment-tag-in-scala-templates-in-play-framework)这可以在scala模板中给出编译错误(对于Play!1.x!)

也许吧,但我对此表示怀疑,以下内容对您有用:

@{ /* Comment */ }