Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
81 views
in Technique[技术] by (71.8m points)

Angular initialise module with configuration with remote http call

I'm using the GoogleApiModule to provide authentication for users, however I don't want to have the clientId stored directly into the angular code what I would like it to retrieve the information from a remote configuration server (using HttpClient) and provide that configuration to the module during import, kind of what you would get with APP_INITIALIZER for providers.

I tried using a factory that returns a promise, as well as blocking queries with await but it does not seem to delay module import as it does with app initialisation (the configuration is empty and I get an error).

Any idea of how to achieve this?

@NgModule({
  declarations: [       
  ],
  imports: [
    BrowserModule,
    BrowserAnimationsModule,
    AppRoutingModule,
    ClickOutsideModule,
    OrderModule,
    FormsModule,
    HttpClientModule,
    CommonModule,
    BrowserAnimationsModule,       
    GoogleApiModule.forRoot({
      provide: NG_GAPI_CONFIG,
      useFactory: gapiConfig,
      deps: [HttpClient]
    }),
  ],
  providers: [   ],
  bootstrap: [AppComponent]
})
export class AppModule {
}

Thanks PS: I'm using angular 10

question from:https://stackoverflow.com/questions/65909471/angular-initialise-module-with-configuration-with-remote-http-call

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...