ngrx里StoreModule.forFeature(‘example‘, reducers)运行时的数据结构
                                                            生活随笔
收集整理的這篇文章主要介紹了
                                ngrx里StoreModule.forFeature(‘example‘, reducers)运行时的数据结构
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.                        
                                StoreModule.forRoot
StoreModule.forRoot方法的作用是,注冊global providers needed for access the Store throughout your application.
例子:
@NgModule({declarations: [AppComponent,UnlessDirective,RainbowDirective,ReactFormComponent,FocusDirective],imports: [BrowserModule,AppRoutingModule,ExampleModule,CommonModule,StoreModule.forRoot({}),EffectsModule.forRoot([AppEffects]),//FormsModule,HttpClientModule,FormsModule,BrowserAnimationsModule,ReactiveFormsModule],exports:[FocusDirective],StoreModule.forFeature(‘example’, reducers)運行時的數據結構
在core.js里找到R3Injector.injectorDefTypes:
injectorDefTypes是一個set,查看里面的entries:
要獲取更多Jerry的原創文章,請關注公眾號"汪子熙":
 
總結
以上是生活随笔為你收集整理的ngrx里StoreModule.forFeature(‘example‘, reducers)运行时的数据结构的全部內容,希望文章能夠幫你解決所遇到的問題。
 
                            
                        - 上一篇: DMRS与SRS
- 下一篇: NgModule imports定义的运
