我正在尝试在我的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
我不明白我错过了什么......
答案 0 :(得分:0)
我正在检查GitHub中苏打水时间的源代码,我认为DateTime位于org.soda.time而不是org.soda
我以前没有使用过汽水时间,但是我使用scalajs-jsjoda作为我的交叉js和JVM项目。