在Angular中使用ngrx时,可以使用循环数组来获取不同的调用。下面是一个示例代码,演示如何通过循环数组来获取不同的调用:
首先,创建一个ngrx的action,用于触发获取调用的操作(例如,获取调用的id):
import { createAction, props } from '@ngrx/store';
export const getCall = createAction('[Call] Get Call', props<{ id: number }>());
然后,在ngrx的reducer中处理该action,根据传递的id获取相应的调用。在reducer中,可以使用循环数组来获取不同的调用。示例如下:
import { createReducer, on } from '@ngrx/store';
import * as callActions from './call.actions';
export interface Call {
id: number;
name: string;
// 其他属性
}
export interface CallState {
calls: Call[];
}
export const initialState: CallState = {
calls: []
};
export const callReducer = createReducer(
initialState,
on(callActions.getCall, (state, { id }) => {
const call = state.calls.find(c => c.id === id);
// 处理获取到的调用数据
// 返回新的state
})
);
最后,在组件中使用ngrx的select方法来获取调用,并在模板中展示。可以使用循环指令(如 *ngFor)来循环展示不同的调用。示例如下:
import { Component } from '@angular/core';
import { Store, select } from '@ngrx/store';
import { getCall } from './call.actions';
@Component({
selector: 'app-call-list',
template: `
- {{ call.name }}
`
})
export class CallListComponent {
calls$ = this.store.pipe(select('calls'));
constructor(private store: Store) {}
getCall(id: number) {
this.store.dispatch(getCall({ id }));
}
}
在上述示例中,calls$
是一个Observable,通过使用async
管道,在模板中订阅并展示调用列表。
以上是一个使用ngrx和循环数组获取不同调用的示例。你可以根据实际需求对代码进行修改和调整。