2016-10-22 91 views
0

我需要通過這個 - >https://github.com/vimalavinisha/angular2-google-chart角2錯誤:(SystemJS)XHR錯誤(404未找到)

我跟每一個step.But我碰到這個錯誤給谷歌圖表添加到我的項目SystemJs.I已經找到了一些答案(2-3個月),但他們並沒有爲我工作。(角2)

這是我的package.json

{ 
    "name": "angular-quickstart", 
    "version": "1.0.0", 
    "scripts": { 
    "start": "concurrently \"npm run tsc:w\" \"npm run lite\" ", 
    "lite": "lite-server", 
    "postinstall": "typings install", 
    "tsc": "tsc", 
    "tsc:w": "tsc -w", 
    "typings": "typings" 
    }, 
    "licenses": [ 
    { 
     "type": "MIT", 
     "url": "https://github.com/angular/angular.io/blob/master/LICENSE" 
    } 
    ], 
    "dependencies": { 
    "@angular/common": "~2.1.0", 
    "@angular/compiler": "~2.1.0", 
    "@angular/core": "~2.1.0", 
    "@angular/forms": "~2.1.0", 
    "@angular/http": "~2.1.1", 
    "@angular/platform-browser": "~2.1.0", 
    "@angular/platform-browser-dynamic": "~2.1.0", 
    "@angular/router": "~3.1.0", 
    "@angular/upgrade": "~2.1.0", 
    "angular-in-memory-web-api": "~0.1.5", 
    "bootstrap": "^3.3.7", 
    "core-js": "^2.4.1", 
    "reflect-metadata": "^0.1.8", 
    "rxjs": "5.0.0-beta.12", 
    "systemjs": "0.19.39", 
    "zone.js": "^0.6.25" 
    }, 
    "devDependencies": { 
    "concurrently": "^3.0.0", 
    "lite-server": "^2.2.2", 
    "typescript": "^2.0.3", 
    "typings":"^1.4.0" 
    } 
} 

systemjs.config.js- ---

(function (global) { 
    System.config({ 
    paths: { 
     // paths serve as alias 
     'npm:': 'node_modules/' 
    }, 
    // 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', 

     // other libraries 
     'rxjs':      'npm:rxjs', 
     'angular2-in-memory-web-api': 'npm:angular2-in-memory-web-api', 
    }, 
    // 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' 
     }, 
     'angular2-in-memory-web-api': { 
     main: './index.js', 
     defaultExtension: 'js' 
     } 
    } 
    }); 
})(this); 

tsConfig.json ---

{ 
    "compilerOptions": { 
    "target": "es5", 
    "module": "commonjs", 
    "moduleResolution": "node", 
    "sourceMap": true, 
    "emitDecoratorMetadata": true, 
    "experimentalDecorators": true, 
    "removeComments": false, 
    "noImplicitAny": false 
    } 
} 

最後app.module.ts

import { NgModule }  from '@angular/core'; 
import { BrowserModule } from '@angular/platform-browser'; 
import { AppComponent } from './app.component'; 
import { GoogleChart } from 'angular2-google-chart/directives/angular2-google-chart.directive'; 

@NgModule({ 
    imports: [ BrowserModule ,GoogleChart], 
    declarations: [ AppComponent ], 
    bootstrap: [ AppComponent ] 
}) 
export class AppModule { } 

這是我得到的錯誤 - >錯誤加載http://localhost:3000/angular2-google-chart/directives/angular2-google-chart.directive爲「angular2-google-圖表/指令/ angular2-google-chart.directive

我找不到任何可行的答案,我已經失去了很多小時這個錯誤。

回答

0

我由我自己解決它。我已經創建了自己的指令並從angular2-google-chart.diretive.ts文件複製粘貼源代碼。它對我來說是唯一的工作方式。

0

正如我看你分享它的示例systemjs.config.js仍然缺少mappackagesdirectives屬性。

它下面的樣子從GitHub的文件https://github.com/vimalavinisha/angular2-google-chart/blob/master/systemjs.config.js

var map = { 
    ... 
    'directives' : 'directives/' 
    }; 

    // packages tells the System loader how to load when no filename and/or no extension 
    var packages = { 
    ... 
    'directives':{ defaultExtension: 'js' } 
    }; 
+0

但錯誤保持不變。 – gamal

+0

您應該爲node_modules文件夾旁邊的指令文件夾以及爲此庫定義的腳本 – Chandermani

相關問題