2017-02-21 3 views
0

をロードすることはできません[として_onreadystatechange] Zone.runTaskでZoneDelegate.invokeTask(http://localhost:3000/node_modules/zone.js/dist/zone.js:265:35) で(http://localhost:3000/node_modules/zone.js/dist/zone.js:698:29) (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.jsangular2は、私がsystem.config内のいくつかの組み合わせを試した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); 

誰かが私がミスを発見することができますか?何が間違っているのか理解できるように助けてください。

答えて

0

クライアントがdatepickerファイルを取得するために使用しているURL:http://localhost:3000/node_modules/ng2-bootstrapを見てください。

'ng2-bootstrap'の開始パスをsystemjs.config.jsにマップしている間に、 'node_modules'で始まるパスはマップされていません。プロジェクトから「node_modules」を含むURLを検索し、パスから「node_modules」を削除します。次にクライアントは、サーバーが 'ng2-bootstrap'ルートに正常にマップできるURLを使用する必要があります。

もう1つ注意が必要です:2番目のルート 'ng2-bootstrap/ng2-bootstrap'に問題があると思います。それはその上のルートと同じ部分パスから始まるので、最初のパスが常に一致するため、このルートは適用されないことが予想されます。このルートも確認する必要があります。

関連する問題