我想根据某些条件将提供者添加到我的提供者数组中。这种方式添加是行不通的
const tempProviders: Array<any> = [
abcService,
xyzService];
if(IE) {
tempProviders.push({provide: EVENT_MANAGER_PLUGINS,
useClass: IeInputEventManagerService,
deps: [DOCUMENT],
multi: true
});
}
@NgModule -> continues here
以上不起作用。将新提供者推送到提供者数组的正确方法是什么。