没有错误编译的简单程序给出了一个白页
Simple program compiled without error gives a white page
我编译了“Hello world”程序
import Html exposing (text)
main =
text "Hello, World!"
在 Windows 上使用 elm 0.17,没有编译错误:
elm make hello.elm --output index.html
当我在 index.html 上打开 Chrome 时,我得到一个空白页面。 Chrome 的控制台在 index.html 中显示 2 个错误:
Uncaught ReferenceError: _elm_lang$virtual_dom$VirtualDom$text is not defined
Uncaught ReferenceError: Elm is not defined
如果我 运行 该文件上的 elm-reactor,我也会得到一个白页,并且在控制台中出现类似的错误。
不知何故,缺少路径...这是 elm-package.json 文件:
{
"version": "1.0.0",
"summary": "helpful summary of your project, less than 80 characters",
"repository": "https://github.com/user/project.git",
"license": "BSD3",
"source-directories": [
"."
],
"exposed-modules": [],
"dependencies": {
"elm-lang/core": "4.0.0 <= v < 5.0.0",
"elm-lang/html": "1.0.0 <= v < 2.0.0"
},
"elm-version": "0.17.0 <= v < 0.18.0"
}
我该怎么办?
我通过删除 elm-stuff 子目录修复了它。在下一次制作时,它会重新安装丢失的软件包,一切正常。
我编译了“Hello world”程序
import Html exposing (text)
main =
text "Hello, World!"
在 Windows 上使用 elm 0.17,没有编译错误:
elm make hello.elm --output index.html
当我在 index.html 上打开 Chrome 时,我得到一个空白页面。 Chrome 的控制台在 index.html 中显示 2 个错误:
Uncaught ReferenceError: _elm_lang$virtual_dom$VirtualDom$text is not defined
Uncaught ReferenceError: Elm is not defined
如果我 运行 该文件上的 elm-reactor,我也会得到一个白页,并且在控制台中出现类似的错误。
不知何故,缺少路径...这是 elm-package.json 文件:
{
"version": "1.0.0",
"summary": "helpful summary of your project, less than 80 characters",
"repository": "https://github.com/user/project.git",
"license": "BSD3",
"source-directories": [
"."
],
"exposed-modules": [],
"dependencies": {
"elm-lang/core": "4.0.0 <= v < 5.0.0",
"elm-lang/html": "1.0.0 <= v < 2.0.0"
},
"elm-version": "0.17.0 <= v < 0.18.0"
}
我该怎么办?
我通过删除 elm-stuff 子目录修复了它。在下一次制作时,它会重新安装丢失的软件包,一切正常。