0

我在非播放 sbt 项目中使用Twirl ,并定义了一个模板:

你好.scala.html

<h1>Welcome hello world</h1>

它会生成一个包含以下代码的 Scala 文件:

package html

import play.twirl.api._
import play.twirl.api.TemplateMagic._

import io.github.freewind.feverblog._

/**/
object hello extends BaseScalaTemplate[play.twirl.api.HtmlFormat.Appendable,Format[play.twirl.api.HtmlFormat.Appendable]](play.twirl.api.HtmlFormat) with play.twirl.api.Template0[play.twirl.api.HtmlFormat.Appendable] {

  /**/
  def apply():play.twirl.api.HtmlFormat.Appendable = {
      _display_ {
        Seq[Any](format.raw/*1.1*/("""<h1>Welcome hello world</h1>"""))
      }
  }

  def render(): play.twirl.api.HtmlFormat.Appendable = apply()

  def f:(() => play.twirl.api.HtmlFormat.Appendable) = () => apply()

  def ref: this.type = this
}

render()和的返回类型apply()play.twirl.api.HtmlFormat.Appendable。如何将其转换为字符串以便将其写入文件?

4

1 回答 1

3

play.twirl.api.HtmlFormat.Appendable只是 的类型别名play.twirl.api.Html,它有一个toString方法。

IE

views.html.hello().toString
于 2015-01-02T16:01:16.503 回答