我是ELM的新手,我想执行此代码:
import Html exposing (..)
main =
text "hola yassine"
使用elm platfrom 0.16。
现在,当我打电话给http://localhost:8000/test.elm时,我有这个错误:
I cannot find module 'Html'.
Module 'Main' is trying to import it.
Potential problems could be:
* Misspelled the module name
* Need to add a source directory or new dependency to elm-package
当我执行elm package install elm-lang/html 1.0.0
导入它时,我有这个依赖于路径的问题:
error
有人可以帮我吗? 非常感谢。
答案 0 :(得分:1)
你说你正在使用榆木0.16。 elm-lang/html
是从头开始编写的for Elm 0.17,它显着改变了基本语言功能(最明显地消除了信号)。您可以尝试使用evancz/elm-html
4.0.2(最后一个版本支持Elm 0.16),或者您可以升级到Elm 0.18(截至2016年11月,最新版本)。