Angular 2:找不到姓名&AmCharts'。在做aot时

时间:2016-12-09 11:32:26

标签: angular amcharts

在我当前的项目中实现aot时,我遇到了以下错误,我正在使用外部库AmCharts

路径错误:无法找到名称' AmCharts'。无法找到名称' AmCharts'。

注意:除了没有编译错误外,每件事情都能正常工作

1 个答案:

答案 0 :(得分:1)

您需要添加语法

define var AmCharts:any;

在组件中作为示例

import { Component } from '@angular/core';
import { CustomComponent } from './customCompo';
define var AmCharts:any;
@Component({
  selector: 'my-app',
  templateUrl: 'app/app.html',
})
export class AppComponent  { name = 'Angular'; }