在angular2模块中加载时,带有system.js的XHR 404

时间:2016-07-13 11:18:05

标签: angular module systemjs

我已经在这两天了,我无法用angular2找出system.js。我正在尝试加载https://github.com/dougludlow/ng2-bs3-modal

我按照两个方向阅读了很多关于system.js的帖子,但我知道我没有采取任何措施。我得到的错误是 : angular2-polyfills.js:1243错误:XHR错误(404 Not Found)loading http://localhost:3000/node_modules/ng2-bs3-modal/ng2-bs3-modal(...)

的index.html

    <script src="node_modules/ng2-bs3-modal/bundles/ng2-bs3-modal.js"></script>

System.js

    <script>
  System.config({
    packages: {
      defaultJSExtensions: true,
      app: {
        format: 'register',
        defaultExtension: 'js'
      }
    },
    map: {
      'ng2-bs3-modal': 'node_modules/ng2-bs3-modal'
    }
  });
  System.import('app/boot')
        .then(null, console.error.bind(console));
</script>

0 个答案:

没有答案