没有导出的成员

时间:2017-07-22 15:24:30

标签: angular

app/graph-options/options.ts,我导出变量:

export let lineChartLevel2: string = "EXPORT";

app/level-2/level-2.component.ts开始,我导入变量:

import { lineChartLevel2 } from '../graph-options/options';

这会导致以下错误:

Failed to compile.

c:/PDWS/src/app/level-2/level-2.component.ts (6,10): 
Module '"c:/PDWS/src/app/graph-options/options"' has no exported member 'lineChartLevel2'.

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

here中所述,您无法导出局部变量

使用const导出简单字符串,数字等

export const lineChartLevel2: string = "EXPORT";