0

I'm looking for an alternative to rails templates and yield in playframework, version 2.0.

Is there something similar to that? I couldn't find it by browsing the docs.

4

2 回答 2

1

我不知道rails,但在我看来,这里对playframework的解释很像: http ://www.playframework.org/documentation/2.0.1/ScalaTemplateUseCases

@(title: String)(content: Html)
<!DOCTYPE html>
<html>
  <head>
    <title>@title</title>
  </head>
  <body>
    <section class="content">@content</section>
  </body>
</html>
于 2012-06-13T09:47:07.343 回答
0

正如 Somatik 的回答中提到的,Play 提供了一种类似于 rails 的 ERB 的默认模板语言,但它很简单,可以用您想要的任何模板引擎替换它。您可能想查看Scalate,它为 Mustache 和 SCAML/Jade(两者都非常类似于 HAML)提供模板引擎。

Play 2.0 Google group 上的讨论指向有关将 Scalate 集成到 Play 2.0 应用程序的主题的进一步文档。

于 2012-07-18T19:20:45.833 回答