angular8與ngrx8的結合使用

1、案例運行後的效果圖

2、關於ngrx的認識

  • 一、官網地址
  • 二、ngrx是借鑑redux的思惟,專門爲angular中定製的一個狀態管理的包,相似react中的reduxvue中的vuex,主要包括如下幾個模塊(本文先介紹@ngrx/store)
    • @ngrx/store
    • @ngrx/store-devtools
    • @ngrx/effects
    • @ngrx/router-store
    • @ngrx/entity
    • @ngrx/data
    • @ngrx/schematics
  • 三、須要使用ngrx的場景
    • angular項目開發中屬於非必須的
    • 大項目中須要進行組件通信,數據共享

3、構建項目

  • 一、使用@angular/cli初始化項目vue

    ng new angular-ngrx
    複製代碼
  • 二、建立一個數據的module(手動修更名字爲AppStoreModule,否則會和@ngrx/store中的重名)react

    ng g m store
    複製代碼
  • 三、在store文件夾下建立三個文件夾git

    • actions
    • reducers
    • selectors(非必須的,僅僅是對於一個狀態樹是對象的時候,寫一個方法選擇狀態樹中的一個節點)
  • 四、手動安裝@ngrx/storegithub

    npm install @ngrx/store --save
    複製代碼
  • 五、手動安裝@ngrx/store-devtoolsvuex

    npm install @ngrx/store-devtools --save
    複製代碼
  • 六、在reducers文件夾下建立index.ts(使用ng add @ngrx/store會默認生成的)shell

    import {
      ActionReducerMap,
      MetaReducer
    } from '@ngrx/store';
    import { environment } from '../../../environments/environment';
    
    // 項目中所有的狀態
    export interface State {}
    
    // 所有的reducer函數
    export const reducers: ActionReducerMap<State> = {};
    
    export const metaReducers: MetaReducer<State>[] = !environment.production ? [] : [];
    複製代碼
  • 七、瀏覽器要安裝redux插件npm

  • 八、在store.module.ts中配置瀏覽器調試的更多配置見redux

    @NgModule({
      declarations: [],
      imports: [
        StoreModule.forRoot(reducers, {
          metaReducers,
          runtimeChecks: {
            strictStateImmutability: true,
            strictActionImmutability: true,
            strictStateSerializability: true,
            strictActionSerializability: true,
          }
        }),
        StoreDevtoolsModule.instrument({
          maxAge: 20,
          logOnly: environment.production
        })
      ]
    })
    export class AppStoreModule { }
    複製代碼

4、在項目中使用@ngrx/store

  • 一、代碼的使用見github中的book組件
相關文章
相關標籤/搜索