我目前正在尝试开发一个Angular 2 Spotify网络应用程序,在浏览互联网时我遇到了这个问题:https://github.com/eduardolima93/angular2-spotify
然而,我一直收到一个错误,我似乎无法弄清楚如何解决它。错误是:
Error loading http://localhost:3000/angular2-spotify as "angular2-spotify" from http://localhost:3000/app/app.component.js
这是我的app.zip的直接链接: https://github.com/eduardolima93/angular2-spotify/files/253681/ang.zip
只需使用“npm install”即可。希望有人可以帮我调试。
非常感谢!
答案 0 :(得分:0)
使用NPM安装模块后,需要将其配置为SystemJS配置中的map
块:
<script>
System.config({
map: {
'angular2-spotify': 'node_modules/angular2-spotify/dist/angular2-spotify.js'
},
packages: {
(...)
}
});
</scrip>