0

我有一个带有客户端和服务器部分的 Play 框架项目。客户端部分使用 scala.js。我正在尝试在客户端脚本中使用 scalatags。

在项目的 build.sbt 中,我添加"com.lihaoyi" %% "scalatags" % "0.5.5"了 libraryDependencies。IntelliJ 然后为我提供了 scalatags 类型的正确代码完成。页面如下:

package app

import scala.scalajs.js
import org.scalajs.dom
import scalatags.Text.all._

object App extends js.JSApp {
    def main(): Unit = {
        dom.document.getElementById("scalajsShoutOut").innerHTML = h1("Hello").render
    }
}

但是,在请求页面时出现编译器错误:

[error] Referring to non-existent class scalatags.Text$all$
[error]   called from app.App$.main()scala.Unit
[error]   called from scala.scalajs.js.JSApp$class.$$js$exported$meth$main(scala.scalajs.js.JSApp)java.lang.Object
[error]   called from app.App$.$$js$exported$meth$main()java.lang.Object
[error]   called from app.App$.main
[error]   exported to JavaScript with @JSExport
[error] involving instantiated classes:
[error]   app.App$
etc.

还需要什么其他设置?

4

1 回答 1

2

您必须在 Scala.js 项目的依赖项中使用%%%,而不是:%%

"com.lihaoyi" %%% "scalatags" % "0.5.5"
于 2016-05-01T07:16:14.190 回答