0

我正在尝试在我的Play! scalajs应用程序中使用苏打日期时间。

Soda date time

在客户端导入(没有任何错误)

"org.mdedetrich" %%% "soda-time" % "0.0.1-SNAPSHOT"

但是当我尝试使用它时,就像这样:

val dateTime = new org.joda.DateTime(new js.Date())

我收到以下错误:

type DateTime is not a member of package org.joda

我没有看到我错过了什么......

4

1 回答 1

0

我在 GitHub 中检查 soda-time 的源代码,我认为DateTime在 org.soda.time 而不是 org.soda

我以前没有使用过 soda-time,但我在我的跨 js 和 JVM 项目中使用了 scalajs-jsjoda

于 2016-11-14T06:46:09.607 回答