在systemjs上获取错误

时间:2018-04-23 12:50:21

标签: typescript systemjs typescript2.0

我正在尝试使用模块和系统j运行一个简单的Hello World脚本但是我在控制台上收到以下错误消息,而我只从裸html文件中获取Hello World from html!消息:

Error: Fetch error: 404 Not Found
  Instantiating http://localhost:3000/module
  Loading http://localhost:3000/main.js
  Loading main.js

我的index.html是:

<html>
    <body>
        <script src="./system.js"></script>
        <script>
            SystemJS.import('main.js')
        </script>
        <p>Hello World from html!</p>
    </body>
</html>

我的main.ts是:

import print_log from './module';

print_log();

let p: Element = document.createElement('p');
p.textContent = 'Hello World!';
document.body.appendChild(p);

module.ts是一个简单的日志函数:

export default function print_log() {
    console.log('Hello World!');
}

我通过快递服务器为应用程序提供服务。

0 个答案:

没有答案