Uncaught SyntaxError: Unexpected token < VM105:17Uncaught ReferenceError: System is not defined

Uncaught SyntaxError: Unexpected token < VM105:17Uncaught ReferenceError: System is not defined

我正在通过 nodejs 服务器为我的 index.html 提供服务。这个 ng2 文件在 live-server 上运行良好。但是当我使用特定路由从 nodejs index.js 加载它时,它会出现以下错误。

Uncaught SyntaxError: Unexpected token <
VM105:17Uncaught ReferenceError: System is not defined

我已经正确加载了文件。这是加载的文件:

<script src="https://cdnjs.cloudflare.com/ajax/libs/es6-shim/0.33.3/es6-shim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.16/system-polyfills.js"></script>
<script src="node_modules/angular2/bundles/angular2-polyfills.js"></script>
<script src="node_modules/systemjs/dist/system.src.js"></script>
<script src="node_modules/rxjs/bundles/Rx.min.js"></script>
<script src="node_modules/angular2/bundles/angular2.min.js"></script>
<script src="node_modules/angular2/bundles/router.js"></script>
<script src="node_modules/angular2/bundles/http.js"></script>

<!-- 2. Configure SystemJS and Import -->
<script>
    System.config({
    packages: {        
      client: {
        format: 'register',
        defaultExtension: 'js'
      }
    }
  });
  System.import('client/boot')
        .then(null, console.error.bind(console));
</script>

我错过了什么?所有文件均由节点服务器提供。

大多数时候出现错误 Uncaught SyntaxError: Unexpected token <,这意味着 script 元素中引用的文件存在 404 错误。

我认为您的 Node 服务没有提供您的 node_modules 文件夹。所以无法加载node_modules/systemjs/dist/system.src.js文件(node_modules中的其他文件也是如此)。