在 angular2 项目中使用 angular2-highcharts 时出错
Getting error when using angular2-highcharts in angular2 project
我在我的项目中使用 angular 2 和 angular2-highcharts。这是我的 app.component.ts 文件
import { Component } from 'angular2/core';
import { CHART_DIRECTIVES } from 'angular2-highcharts';
@Component({
selector: 'simple-chart-example',
directives: [CHART_DIRECTIVES],
template: `
<chart [options]="options"></chart>
`
})
export class SimpleChartExample {
constructor() {
this.options = {
title : { text : 'simple chart' },
series: [{
data: [29.9, 71.5, 106.4, 129.2],
}]
};
}
options: Object;
}
我已经在我的项目中添加了所有的依赖项。但是 运行 我收到错误
Severity Code Description Project File Line Suppression State Error TS2307 Build: Cannot find module
'@angular/core'.
错误来自 angular2-highcharts 文件。
我不想在我的项目中使用 angular (1.x) 版本。我只想使用 angular 测试版。谁能帮忙解决一下。
您正在使用 beta angular2 发行版。因为它已经成为 RC,所以它使用 @angular/..
所以请更新您的 angular2,它将起作用。
"dependencies": {
"@angular/common": "2.0.0-rc.1",
"@angular/compiler": "2.0.0-rc.1",
"@angular/core": "2.0.0-rc.1",
"@angular/http": "2.0.0-rc.1",
"@angular/platform-browser": "2.0.0-rc.1",
"@angular/platform-browser-dynamic": "2.0.0-rc.1",
"@angular/router": "2.0.0-rc.1",
"@angular/router-deprecated": "2.0.0-rc.1",
"@angular/upgrade": "2.0.0-rc.1",
}
我在我的项目中使用 angular 2 和 angular2-highcharts。这是我的 app.component.ts 文件
import { Component } from 'angular2/core';
import { CHART_DIRECTIVES } from 'angular2-highcharts';
@Component({
selector: 'simple-chart-example',
directives: [CHART_DIRECTIVES],
template: `
<chart [options]="options"></chart>
`
})
export class SimpleChartExample {
constructor() {
this.options = {
title : { text : 'simple chart' },
series: [{
data: [29.9, 71.5, 106.4, 129.2],
}]
};
}
options: Object;
}
我已经在我的项目中添加了所有的依赖项。但是 运行 我收到错误
Severity Code Description Project File Line Suppression State Error TS2307 Build: Cannot find module '@angular/core'.
错误来自 angular2-highcharts 文件。
我不想在我的项目中使用 angular (1.x) 版本。我只想使用 angular 测试版。谁能帮忙解决一下。
您正在使用 beta angular2 发行版。因为它已经成为 RC,所以它使用 @angular/..
所以请更新您的 angular2,它将起作用。
"dependencies": {
"@angular/common": "2.0.0-rc.1",
"@angular/compiler": "2.0.0-rc.1",
"@angular/core": "2.0.0-rc.1",
"@angular/http": "2.0.0-rc.1",
"@angular/platform-browser": "2.0.0-rc.1",
"@angular/platform-browser-dynamic": "2.0.0-rc.1",
"@angular/router": "2.0.0-rc.1",
"@angular/router-deprecated": "2.0.0-rc.1",
"@angular/upgrade": "2.0.0-rc.1",
}