如果您尝试在装饰器中进行调用,Angular AoT 编译器会抛出错误。
考虑以下代码:
export function factoryBuilder(config: MyConfig) {
return function customFactory() {
return new MyService(config);
};
}
@NgModule({})
export class MyModule {
static forRoot(config: MyConfig): ModuleWithProviders {
return {
ngModule: MyModule,
providers: [
{
provide: MyService,
useFactory: factoryBuilder(config),
}]
};
}
}
如果您尝试使用 aot 标志 (--prod) 构建它:
编译器说:
ERROR in Error during template compile of 'AppModule'
Function expressions are not supported in decorators in 'MyModule'
...
Consider changing the function expression into an exported function.
有人可以从技术上解释为什么编译器不能支持吗?
PS:此代码在 JiT 模式下工作。