无法将 play.twirl.api.Html 个对象与 play 2.3 连接起来

Can't concatenate play.twirl.api.Html objects with play 2.3

我正在尝试将一个相当大的项目从 play framework 2.2 迁移到 2.3。在这个项目中,我们有一些帮手做这样的事情:

import play.api.templates.Html;
...
private object HtmlHelper {
  ...
  // Given a sequence of Htmls, return a single Html containing them
  def html(htmls: Seq[Html]): Html = htmls.foldLeft(Html(""))(_+=_)
}

我已将其转换为:

import play.twirl.api.Html;
...
private object HtmlHelper {
  ...
  // Given a sequence of Htmls, return a single Html containing them
  def html(htmls: Seq[Html]): Html = htmls.foldLeft(Html(""))((r,c) => r + c)
}

编译失败,出现以下错误:

Read from stdout: <PATH> type mismatch;
Read from stdout: found   : play.twirl.api.Html
Read from stdout: required: String

我一直试图在 2.3 中找到有关此 Html 对象的文档,但没有找到任何东西。据我所知,Html 对象实现了 Appendable,这意味着 + 运算符应该可以工作......我没有时间学习所有的 Scala 并且这种假定的 "expressive" 语法正在发生我的神经。

如有任何帮助,我们将不胜感激。

Html 上不再定义 += 方法,因此编译器试图使其作为 String 工作,但这也不起作用。请参阅 updated scaladocHtmlAppendable 的一种)。

This used to support +=, but no longer is required to.

@todo Change name to reflect not appendable

我猜你可以合并 String 值,然后转换回 Html

def html(htmls: Seq[Html]): Html =
    Html(htmls.foldLeft("")((r, c) => r + c.toString))

scala> val list = List(Html("<p>1</p>"), Html("<p>2</p>"), Html("<p>3</p>"))
list: List[play.twirl.api.Html] = List(<p>1</p>, <p>2</p>, <p>3</p>)

scala> html(list)
res5: play.twirl.api.Html = <p>1</p><p>2</p><p>3</p>

实际上有一个名为 fill 的方法已经在执行此操作,但在 HtmlFormat:

def html(htmls: Seq[Html]): Html = HtmlFormat.fill(htmls)

Seq可能有点挑剔。