在Angular中,可以使用ngrx/store库来管理应用的状态和数据流。当需要重置动态表单的值时,可以通过以下步骤实现:
export interface DynamicForm {
firstName: string;
lastName: string;
email: string;
}
import { createReducer, on } from '@ngrx/store';
import { resetForm } from './form.actions';
export const initialState: DynamicForm = {
firstName: '',
lastName: '',
email: ''
};
export const formReducer = createReducer(
initialState,
on(resetForm, () => initialState)
);
import { createAction } from '@ngrx/store';
export const resetForm = createAction('[Form] Reset');
import { Component } from '@angular/core';
import { Store } from '@ngrx/store';
import { resetForm } from './form.actions';
import { DynamicForm } from './form.model';
@Component({
selector: 'app-form',
template: `
`
})
export class FormComponent {
form: DynamicForm;
constructor(private store: Store<{ form: DynamicForm }>) {
this.store.select('form').subscribe(form => this.form = form);
}
reset() {
this.store.dispatch(resetForm());
}
}
在上述示例中,通过订阅ngrx store中的表单状态,可以保持表单和store的数据同步。当点击重置按钮时,调用reset()方法,通过dispatch一个resetForm的action来重置表单的值。
希望以上内容对你有所帮助!