下面是一个示例解决方案,展示了如何使用Angular Ngrx从Java API获取和显示选项列表:
npm install @ngrx/store @ngrx/effects
import { Injectable } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { Observable } from 'rxjs';
@Injectable()
export class OptionService {
private apiUrl = 'http://example.com/api/options';
constructor(private http: HttpClient) {}
getOptions(): Observable
import { Injectable } from '@angular/core';
import { Actions, Effect, ofType } from '@ngrx/effects';
import { Observable, of } from 'rxjs';
import { Action } from '@ngrx/store';
import { catchError, map, switchMap } from 'rxjs/operators';
import { OptionService } from './option.service';
import { LoadOptionsSuccess, LoadOptionsFailure, OptionActionTypes } from './option.actions';
@Injectable()
export class OptionEffects {
constructor(
private actions$: Actions,
private optionService: OptionService
) {}
@Effect()
loadOptions$: Observable = this.actions$.pipe(
ofType(OptionActionTypes.LoadOptions),
switchMap(() =>
this.optionService.getOptions().pipe(
map(options => new LoadOptionsSuccess(options)),
catchError(error => of(new LoadOptionsFailure(error)))
)
)
);
}
import { Option } from './option.model';
import { OptionActionTypes, OptionActions } from './option.actions';
export interface OptionState {
options: Option[];
loading: boolean;
error: any;
}
const initialState: OptionState = {
options: [],
loading: false,
error: null
};
export function optionReducer(state = initialState, action: OptionActions): OptionState {
switch (action.type) {
case OptionActionTypes.LoadOptions:
return {
...state,
loading: true,
error: null
};
case OptionActionTypes.LoadOptionsSuccess:
return {
...state,
options: action.payload,
loading: false,
error: null
};
case OptionActionTypes.LoadOptionsFailure:
return {
...state,
options: [],
loading: false,
error: action.payload
};
default:
return state;
}
}
import { Component, OnInit } from '@angular/core';
import { Store } from '@ngrx/store';
import { LoadOptions } from './option.actions';
import { OptionState } from './option.reducer';
import { Observable } from 'rxjs';
import { Option } from './option.model';
@Component({
selector: 'app-options',
templateUrl: './options.component.html',
styleUrls: ['./options.component.css']
})
export class OptionsComponent implements OnInit {
options$: Observable
- {{ option.name }}
通过这些步骤,你可以使用Angular Ngrx从Java API获取和显示选项列表。当你调用new LoadOptions()
动作时,OptionEffects将调用OptionService来获取选项列表,并将结果