在尝试导入Date模块并在简单的Elm文件中使用它时,出现以下错误:
-- UNKNOWN IMPORT ---------------------------- app/javascript/CountdownTimer.elm
The CountdownTimer module has a bad import:
import Date
I cannot find that module! Is there a typo in the module name?
The "source-directories" field of your elm.json tells me to only look in the src
directory, but it is not there. Maybe it is in a package that is not installed
yet?
CountdownTimer是文件和模块的名称,取自here,似乎可以正常工作,但对我来说不行。
我正在使用Elm 0.19.0和Rails 6.0.0beta1,这似乎不是一个约束,因为如果我在任何地方输入Elm REPL并尝试导入日期,我都会遇到相同的错误:< / p>
> import Date
-- UNKNOWN IMPORT ---------------------------------------------------------- elm
The Elm_Repl module has a bad import:
import Date
I cannot find that module! Is there a typo in the module name?
When creating a package, all modules must live in the src/ directory.
我的elm.json文件如下:
{
"type": "application",
"source-directories": [
"src"
],
"elm-version": "0.19.0",
"dependencies": {
"direct": {
"elm/browser": "1.0.1",
"elm/core": "1.0.2",
"elm/html": "1.0.0",
"elm/time": "1.0.0",
"elm/json": "1.1.2",
"elm/url": "1.0.0",
"elm/virtual-dom": "1.0.2"
},
"indirect": {
}
},
"test-dependencies": {
"direct": {},
"indirect": {}
}
}
答案 0 :(得分:8)
您尝试使用的代码已过时。据我所知,Date
已从Elm 0.19中的core
中删除,没有直接替换,也没有包含完全相同功能的间接替换。 elm/time
是Date
和Time
的正式后继产品,但是它不提供日期/时间字符串解析,这是您在这里需要的。
旧的Date.fromString
只是JavaScript解析API的一个薄包装,因此不是非常一致或定义明确。因此,为什么要删除它。在Elm 0.19中,您必须使用提供更特定功能的第三方程序包,例如elm-iso8601-date-strings。
如果收到的是ISO 8601字符串,则应该可以将parseTime
替换为:
import Iso8601
import Time
parseTime : String -> Time.Posix
parseTime string =
Iso8601.toTime string
|> Result.withDefault (Time.millisToPosix 0)
但是,如果收到的不是ISO 8601格式,则需要找到另一个解析该特定格式的软件包。