2017-02-21 56 views
0

我试过system.config内的几种组合 - 但我还是得到此错误angular2无法加载NG2的自举日期选择器

错误:错误:错误XHR(404未找到)装载http://localhost:3000/node_modules/ng2-bootstrap 在XMLHttpRequest.wrapFn [按_onreadystatechange](http://localhost:3000/node_modules/zone.js/dist/zone.js:698:29) 在ZoneDelegate.invokeTask(http://localhost:3000/node_modules/zone.js/dist/zone.js:265:35) 在Zone.runTask(http://localhost:3000/node_modules/zone.js/dist/zone.js:154:47) 在XMLHttpRequest.ZoneTask.invoke(http://localhost:3000/node_modules/zone.js/dist/zone.js:335:33) 错误加载http://localhost:3000/node_modules/ng2-bootstrap为 “NG2的自举” 从http://localhost:3000/app/app.module.js

我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); 

有人可以帮助我发现错误了吗?并帮助我了解哪里出了问题?

回答

0

查看客户端用于获取日期选择器文件的URL:http://localhost:3000/node_modules/ng2-bootstrap

虽然您在systemjs.config.js中映射了'ng2-bootstrap'的开始路径,但您尚未映射任何以'node_modules'开头的路径。在您的项目中搜索包含'node_modules'的网址,并从路径中移除'node_modules'。然后客户端应该使用服务器可以成功映射到'ng2-bootstrap'路由的URL。

还有一点要注意:我认为你的第二条路由'ng2-bootstrap/ng2-bootstrap'有问题。因为它与刚刚在它上面的路线相同的部分路径开始,所以我期望这条路线从不适用,因为第一条路线总是匹配。你也应该验证这条路线。

相关问题