Angular: 使用ngrx进行嵌套的http调用
创始人
2024-10-23 00:01:22
0

在Angular中使用ngrx进行嵌套的HTTP调用,您可以按照以下步骤进行解决:

  1. 首先,确保您已经安装了ngrx/store和ngrx/effects。您可以使用以下命令进行安装:
npm install @ngrx/store @ngrx/effects
  1. 创建一个名为user.actions.ts的文件,用于定义用户相关的动作。在该文件中,定义一个名为LoadUser的动作,用于加载用户数据。
import { Action } from '@ngrx/store';

export enum UserActionTypes {
  LoadUser = '[User] Load User',
  UserLoaded = '[User] User Loaded',
  UserLoadFailed = '[User] User Load Failed'
}

export class LoadUser implements Action {
  readonly type = UserActionTypes.LoadUser;

  constructor(public payload: { userId: number }) {}
}

export class UserLoaded implements Action {
  readonly type = UserActionTypes.UserLoaded;

  constructor(public payload: { user: any }) {}
}

export class UserLoadFailed implements Action {
  readonly type = UserActionTypes.UserLoadFailed;

  constructor(public payload: { error: any }) {}
}

export type UserActions = LoadUser | UserLoaded | UserLoadFailed;
  1. 创建一个名为user.effects.ts的文件,用于处理用户相关的副作用。在该文件中,定义一个名为loadUser$的效果,用于处理LoadUser动作,并发出UserLoadedUserLoadFailed动作。
import { Injectable } from '@angular/core';
import { Actions, Effect, ofType } from '@ngrx/effects';
import { of } from 'rxjs';
import { switchMap, map, catchError } from 'rxjs/operators';

import { UserService } from './user.service';
import { LoadUser, UserLoaded, UserLoadFailed, UserActionTypes } from './user.actions';

@Injectable()
export class UserEffects {
  constructor(private actions$: Actions, private userService: UserService) {}

  @Effect()
  loadUser$ = this.actions$.pipe(
    ofType(UserActionTypes.LoadUser),
    switchMap(action =>
      this.userService.getUser(action.payload.userId).pipe(
        map(user => new UserLoaded({ user })),
        catchError(error => of(new UserLoadFailed({ error })))
      )
    )
  );
}
  1. 创建一个名为user.service.ts的文件,用于处理用户相关的HTTP请求。在该文件中,定义一个名为getUser的方法,用于获取用户数据。
import { Injectable } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { Observable } from 'rxjs';

@Injectable()
export class UserService {
  constructor(private http: HttpClient) {}

  getUser(userId: number): Observable {
    return this.http.get(`/api/users/${userId}`);
  }
}
  1. 在您的模块中注册ngrx/store和ngrx/effects。
import { NgModule } from '@angular/core';
import { StoreModule } from '@ngrx/store';
import { EffectsModule } from '@ngrx/effects';

import { userReducer } from './user.reducer';
import { UserEffects } from './user.effects';

@NgModule({
  imports: [
    StoreModule.forFeature('user', userReducer),
    EffectsModule.forFeature([UserEffects])
  ]
})
export class UserModule {}
  1. 在您的组件中,使用ngrx/store来调度LoadUser动作,并通过ngrx/effects来处理加载用户的副作用。
import { Component } from '@angular/core';
import { Store } from '@ngrx/store';

import { LoadUser } from './user.actions';

@Component({
  selector: 'app-user',
  template: `
    
  `
})
export class UserComponent {
  constructor(private store: Store) {}

  loadUser() {
    this.store.dispatch(new LoadUser({ userId: 1 }));
  }
}

通过上述步骤,您可以在Angular中使用ngrx进行嵌套的HTTP调用。当您点击"Load User"按钮时,将触发LoadUser动作,并通过ngrx/effects处理副作用,从而加载用户数据。

相关内容

热门资讯

前端-session、jwt 目录:   (1)session (2&#x...
linux入门---制作进度条 了解缓冲区 我们首先来看看下面的操作: 我们首先创建了一个文件并在这个文件里面添加了...
关于测试,我发现了哪些新大陆 关于测试 平常也只是听说过一些关于测试的术语,但并没有使用过测试工具。偶然看到编程老师...
前缀和与对数器与二分法 1. 前缀和 假设有一个数组,我们想大量频繁的去访问L到R这个区间的和,...
nodejs:本地安装nvm实... 一、背景-使用不同版本node的原因 vue3+ts、nuxt3版本,node...
JAVA集合知识整理 Java集合知识整理 HashMap相关 HashMap的底层数据结构:jdk1.8之...
无刷直流电机介绍及单片机控制实... 无刷直流电机介绍及单片机控制实例前言基本概念优势与劣势使用寿命基本结构使用单片机控制实例电子调速器&...
fwdiary(2) dp2 1.传纸条  AcWing 275. 传纸条 - AcWing 走两条路,走一条最大的...
常用的DOS命令 常用的DOS命令 DOS(Disk Operating System,磁...
<C++> 类和对象(下) 1.const成员函数将const修饰的“成员函数”称之为const成员函数,cons...