当我使用angular2 AoT时,我收到错误:
Function calls are not supported. Consider replacing the function or lambda with a reference to an exported function (position 54:17 in the original .ts file), resolving symbol COMPILER_PROVIDERS in
在我的指令模块中,我有这样的代码:
import { COMPILER_PROVIDERS } from '@angular/compiler';
@NgModule({
/*imports ...*/
providers: [
COMPILER_PROVIDERS,
]
})
我知道我应该将 COMPILER_PROVIDERS 更改为导出的函数,但是当我检查@ angular / compiler的源代码时,我发现了这个:
export declare const COMPILER_PROVIDERS: Array<any | Type<any> | {
[k: string]: any;
} | any[]>;
export declare class RuntimeCompilerFactory implements CompilerFactory {
private _defaultOptions;
constructor(defaultOptions: CompilerOptions[]);
createCompiler(options?: CompilerOptions[]): Compiler;
}
我不知道COMPILER_PROVIDERS是如何工作的,我不知道如何将它传输到模块中的导出函数。 如果有人能帮助我,我将不胜感激!
答案 0 :(得分:9)
解决方案是不再使用COMPILER_PROVIDERS
。此外,您无需在提供商列表中加入JitCompiler
。
相反,请使用“@ angular / compiler”中的JitCompilerFactory
。它不是可注射的,所以只需自己创建一个新的实例:
private compiler: Compiler = new JitCompilerFactory([{useDebug: false, useJit: true}]).createCompiler();
其余部分和以前一样,例如Radim Kohler的优秀答案here之后。