具有角度2的systemJS错误

时间:2016-04-05 14:05:51

标签: angular systemjs

我正在尝试在Angular2应用程序中使用外部库(https://justindujardin.github.io/ng2-material/

  1. 我npm安装了包
  2. 我在TS文件中导入了指令
  3. 然后它无效,我有以下错误:

    system.src.js:4935 GET http://localhost:5000/ng2-material/all 404 (Not Found)
    

    这似乎是一个SystemJS错误,但我该怎么做才能使指令工作?

1 个答案:

答案 0 :(得分:1)

您需要使用NPM安装ng2-material库,然后在SystemJS配置中对其进行配置:

<script>
  System.config({
    defaultJSExtensions: true,
    packages: {
      app: {
        format: 'register',
        defaultExtension: false
      }
    },
    map: {
      'ng2-material': 'node_modules/ng2-material'
    }
  });
</script>