如何通过 Play Framework 2.5.x 在 build.sbt 中使用模板导入

How to use templatesImport in build.sbt with Playframework 2.5.x

我提出了同样的问题 here。我正在使用 Play 2.5.10、Scala 2.11.7 和 sbt 0.13.11

我想在每个模板中导入通用包。

当我在 build.sbt 中使用以下内容时出现构建错误:

templatesImport ++= Seq(
    "helper._",
    "play.api._"
)

构建错误:

build.sbt: error: not found: value templatesImport

找到解决方案here

更改为:

TwirlKeys.templateImports ++= Seq(
  "helper._",
  "play.api._"
)