angular2无法加载ng2引导日期选择器

angular2无法加载ng2引导日期选择器,angular,ng2-bootstrap,Angular,Ng2 Bootstrap,我在system.config中尝试了几种组合,但仍然出现此错误 错误:错误:XHR错误(未找到404)加载 在XMLHttpRequest.wrapFn[as _onreadystatechange]() 在ZoneDelegate.invokeTask()上 在Zone.runTask()处 在XMLHttpRequest.ZoneTask.invoke()处 从加载为“ng2引导”时出错 我的system.config代码段是 (function (global) { System.con

我在system.config中尝试了几种组合,但仍然出现此错误

错误:错误:XHR错误(未找到404)加载 在XMLHttpRequest.wrapFn[as _onreadystatechange]() 在ZoneDelegate.invokeTask()上 在Zone.runTask()处 在XMLHttpRequest.ZoneTask.invoke()处 从加载为“ng2引导”时出错

我的system.config代码段是

(function (global) {
System.config({
paths: {
  // paths serve as alias
  'npm:': 'node_modules/',
  'ng2-bootstrap':   "node_modules/ng2-bootstrap"
},
// map tells the System loader where to look for things
map: {
  // our app is within the app folder
  app: 'app',

  // angular bundles
  '@angular/core': 'npm:@angular/core/bundles/core.umd.js',
  '@angular/common': 'npm:@angular/common/bundles/common.umd.js',
  '@angular/compiler': 'npm:@angular/compiler/bundles/compiler.umd.js',
  '@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
  '@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
  '@angular/http': 'npm:@angular/http/bundles/http.umd.js',
  '@angular/router': 'npm:@angular/router/bundles/router.umd.js',
  '@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
  'rxjs': 'npm:rxjs',
  'moment': 'node_modules/moment',
  'ng2-bootstrap': 'node_modules/ng2-bootstrap',
  'ng2-bootstrap/ng2-bootstrap': 'node_modules/ng2-bootstrap/bundles/ng2-bootstrap.umd.js'
  // other libraries

},
// packages tells the System loader how to load when no filename and/or no extension
packages: {
  app: {
    main: './main.js',
    defaultExtension: 'js'
  },
  rxjs: {
    defaultExtension: 'js'
  },
  'ng2-bootstrap': {
    "defaultExtension": "js"
 }    
}  });   })(this);

有人能帮我找出错误吗?帮我了解出了什么问题

查看客户端用于获取日期选择器文件的URL:

虽然您已在systemjs.config.js中映射了“ng2引导”的起始路径,但尚未映射任何以“node_modules”开头的路径。在项目中搜索URL,包括“节点\模块”,并从路径中删除“节点\模块”。然后,客户端应该使用服务器可以成功映射到“ng2引导”路由的URL

还有一个警告:我认为您的第二条路线“ng2引导/ng2引导”存在问题。因为它与它上面的路由以相同的部分路径开始,我希望这个路由永远不会应用,因为第一个总是匹配的。你也应该验证这条路线