Angular 2 动态表单 - 实现取消功能

Posted

技术标签:

【中文标题】Angular 2 动态表单 - 实现取消功能【英文标题】:Angular 2 Dynamic Form - Implement Cancel functionality 【发布时间】:2016-12-08 10:14:24 【问题描述】:

我正在尝试实现取消功能,该功能应该恢复到表单中的先前值,这些值在上次提交表单时存在。我正在尝试创建传递给表单的数据对象的副本,在提交函数中,我将新值替换为副本,在取消函数中,我将复制值替换为原始值。但是当我调用取消函数时,我没有得到以前的值。

有错误的工作代码:http://plnkr.co/edit/SL949g1hQQrnRUr1XXqt?p=preview

我基于Angualr 2表单的模板驱动代码实现了取消功能:http://plnkr.co/edit/LCAPYTZElQDjrSgh3xnT?p=preview

Typescript 类代码:

import  Component, Input, OnInit   from '@angular/core';
import  FormGroup, REACTIVE_FORM_DIRECTIVES  from '@angular/forms';
import  QuestionBase                  from './question-base';
import  QuestionControlService        from './question-control.service';

@Component(
  selector: 'dynamic-form',
  templateUrl: 'app/dynamic-form.component.html',
  directives: [REACTIVE_FORM_DIRECTIVES],
  providers:  [QuestionControlService]
)
export class DynamicFormComponent implements OnInit 

  @Input() questions: QuestionBase<any>[] = [];
  form: FormGroup;
  payLoad:object;
  questiont: QuestionBase<any>;
  constructor(private qcs: QuestionControlService)   
  ngOnInit() 
    this.form = this.qcs.toFormGroup(this.questions);
    console.log("Form Init",this.questions);
    this.questiont=this.questions;
  
  onSubmit() 
    this.payLoad = JSON.stringify(this.form.value);
    this.payLoad2=this.payLoad;
    this.questiont=this.questions;
    console.log("Original Data",this.questions);
    console.log("Duplicate Data",this.questiont);
  
  cancel()
    this.questions=this.questiont;
    console.log("Original Data",this.questions);
    console.log("Duplicate Data",this.questiont);
    console.log("Canceled");
  


HTML 代码:

<div>
  <form [formGroup]="form">

    <div *ngFor="let question of questions" class="form-row">
      <label [attr.for]="question.key">question.label</label>

  <div [ngSwitch]="question.controlType">

    <input *ngSwitchCase="'textbox'" [formControlName]="question.key"
            [id]="question.key" [type]="question.type" [(ngModel)]="question.value">

    <select [id]="question.key" [(ngModel)]="question.value" *ngSwitchCase="'dropdown'" [formControlName]="question.key" >
      <option *ngFor="let opt of question.options" [ngValue]="opt.key" >opt.value</option>
    </select>

  </div> 
  <div class="errorMessage" *ngIf="!form.controls[question.key].valid">question.label is required</div>
    </div>

    <div class="form-row">
      <button type="submit" [disabled]="!form.valid" (click)="onSubmit()">Save</button>
      <button type="button" class="btn btn-default" (click)="cancel()">Cancel</button>

    </div>
  </form>

  <div *ngIf="payLoad" class="form-row">
    <strong>Saved the following values</strong><br>payLoad
  </div>
</div>

任何人都遇到过这个问题或试图实现这个。

【问题讨论】:

【参考方案1】:

表单重置将在 RC5 中实现。

您的方法不适用于对象:

this.questiont=this.questions; //you are sharing refrence to the same object

您应该改为克隆对象(有很多方法可以做到这一点,我正在使用 JSON):

this.questiont = JSON.parse(JSON.stringify(this.questions));

【讨论】:

感谢您的回答,它正在工作。我正在尝试实现清除功能,它暂时清除显示的表单中的所有值,以便用户可以输入全新的数据。可以用上面的代码吗?您能否对这个清晰的功能有所了解。谢谢 嘿你有什么想法,如何实现清晰的功能?帮我过来。谢谢。 目前你需要创建模型的副本来实现 clear,和我的回答一样 工作正常! Angular 是否有任何内置方式来处理此功能?

以上是关于Angular 2 动态表单 - 实现取消功能的主要内容,如果未能解决你的问题,请参考以下文章

Angular 表单:如何动态添加/删除子表单组件

Angular 2 动态嵌套表单

动态嵌套表单控件Angular 2

带有 ngmodel 的 Angular 2 动态表单示例导致“表达式在检查后已更改”

如何检测 Angular 2 反应/动态表单的一个元素发生的变化?

angularjs 动态表单, 原生事件中调用angular方法