Elm-live打开错误的js文件

时间:2016-12-19 07:36:19

标签: elm

启动我的榆树应用程序时遇到问题。我输入了正确的目录(〜> Projects> elm> KDVnet_elmNERD),并输入了以下命令:

elm-live src/Main.elm --output=elm.js --open --push

但收到此输出:

  Success! Compiled 1 module.
Successfully generated elm.js

elm-live:
  elm-make has succeeded. Starting the server! We’ll open your app
  in the default browser as soon as it’s up and running.

[0001] info  Server running at http://localhost:8000/ (connect)
[0001] info  LiveReload running on 35729
[0002] 30ms          0B GET    304 /
[0002] 5ms          25B GET    404 /script.js
[0016] 3ms           0B GET    304 /
[0016] 1ms          25B GET    404 /script.js

昨天,我正在一个名为'script.js'的文件中处理一个javascript项目,该文件在一个SimpleHTTPServer上运行,在端口8000(python -m SimpleHTTPServer 8000)上,但我已关闭该服务器。

这是我的Html文件:

<!DOCTYPE HTML>
<html>
    <head>
        <meta charset="utf-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <script type="text/javascript" src="/elm.js"></script>
        <link rel="stylesheet" type"text/css" href="styles.css" />
        <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
        <link rel="stylesheet" href="https://code.getmdl.io/1.2.1/material.green-orange.min.css">
    </head>

    <body class="mdl-color--grey-100 mdl-color-text--grey-700 mdl-base">
    </body>

    <script type="text/javascript">
         var app = Elm.Main.fullscreen();
    </script>
</html>

1 个答案:

答案 0 :(得分:0)

我通过将“index.html”添加到网址(http://localhost:8000/index.html)解决了这个问题,尽管过去我从来没有这么做过。如果有人对可能发生的事情有任何建议,我很高兴听到他们的意见。