专注于 JetBrains IDEA 全家桶,永久激活,教程
持续更新 PyCharm,IDEA,WebStorm,PhpStorm,DataGrip,RubyMine,CLion,AppCode 永久激活教程

angular8与ngrx8的结合使用

一、案例运行后的效果图

64_1.png

二、关于ngrx的认识

  • 1、官网地址
  • 2、ngrx是借鉴redux的思维,专门为angular中定制的一个状态管理的包,类似react中的reduxvue中的vuex,主要包括以下几个模块(本文先介绍@ngrx/store)
    • @ngrx/store
    • @ngrx/store-devtools
    • @ngrx/effects
    • @ngrx/router-store
    • @ngrx/entity
    • @ngrx/data
    • @ngrx/schematics
  • 3、需要使用ngrx的场景
    • angular项目开发中属于非必须的
    • 大项目中需要进行组件通讯,数据共享

三、构建项目

  • 1、使用@angular/cli初始化项目
    ng new angular-ngrx

  • 2、创建一个数据的module(手动修改名字为AppStoreModule,不然会和@ngrx/store中的重名)
    ng g m store

  • 3、在store文件夹下创建三个文件夹
    • actions
    • reducers
    • selectors(非必须的,仅仅是对于一个状态树是对象的时候,写一个方法选择状态树中的一个节点)
  • 4、手动安装@ngrx/store
    npm install @ngrx/store --save

  • 5、手动安装@ngrx/store-devtools
    npm install @ngrx/store-devtools --save

  • 6、在reducers文件夹下创建index.ts(使用ng add @ngrx/store会默认生成的)
    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 ? [] : [];

  • 7、浏览器要安装redux插件
  • 8、在store.module.ts中配置浏览器调试的更多配置见
    @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 { }

四、在项目中使用@ngrx/store

  • 1、代码的使用见github中的book组件
未经允许不得转载:搜云库技术团队 » angular8与ngrx8的结合使用

JetBrains 全家桶,激活、破解、教程

提供 JetBrains 全家桶激活码、注册码、破解补丁下载及详细激活教程,支持 IntelliJ IDEA、PyCharm、WebStorm 等工具的永久激活。无论是破解教程,还是最新激活码,均可免费获得,帮助开发者解决常见激活问题,确保轻松破解并快速使用 JetBrains 软件。获取免费的破解补丁和激活码,快速解决激活难题,全面覆盖 2024/2025 版本!

联系我们联系我们