Angular 2 Dynamic Forms如何根据另一个

时间:2016-08-13 00:13:20

标签: javascript validation angular typescript html-form

环境:Angular 2 RC 4,打字稿。

我有Dynamic Angular forms的实现。我总共有4个字段 - dob,电子邮件,问题和答案

问题:

dob: new TextboxQuestion({
      key: 'dob',
      label: 'Date of Birth',
      value: '',
    }),


    email: new TextboxQuestion({
      key: 'email',
      label: 'Email Address',
      value: '',
      type: 'email',
    }),

    securityQuestion: new TextboxQuestion({
      key: 'challengeQuestion',
      label: 'Security Question',
      value: '',
      disabled: true
    }),
    securityAnswer: new TextboxQuestion({
      key: 'challengeAnswer',
      label: 'Write your answer',
      value: '',
    })

主/父组件html的片段

<dynamic-form (responsesEvt)="onFormSubmitResponseReceived($event);" [sections]="sections" class="col-md-8"></dynamic-form> 

动态表单组件

<form (ngSubmit)="onSubmit()" [formGroup]="form"> 
            <div *ngFor="let question of questions" class="form-row" >
                <df-question [question]="question" [form]="form" *ngIf="!section.hidden"></df-question>
            </div>

        <div class="row">
            <div class="col-md-5"></div>
            <div class="col-md-7 btn-row">
                <button type="submit" class="btn btn-primary pull-right" [disabled]="!form.valid">I agree with the Terms & Conditions</button>
                <!--<button type="submit" class="btn btn-primary pull-right" [disabled]="!form.valid || subbmittedalready">I agree with the Terms & Conditions</button>-->
                <button type="button" class="btn btn-default pull-right">Cancel</button>
            </div>
        </div>
    </form>

df-question组件

<div [formGroup]="form">
  <div class="col-md-5"><label class="pull-right" [attr.for]="question.key"><span class="errorMessage">*&nbsp;</span>{{question.label}}</label></div>
  <div class="col-md-7" [ngSwitch]="question.controlType">
    <input *ngSwitchCase="'textbox'" [formControlName]="question.key" [id]="question.key" [type]="question.type" class="form-control"
      [placeholder]="question.placeHolder"
       />
  </div>
  <div class="col-md-5"></div>
</div>  

这是我的工作流程

Step 1 Initially at form load, only dob and email show up.
Step 2 User types in the dob and email. DOB and email are sent to the backend and if the info is correct, a "question" is returned.
Step 3 Now the question and answer fields appear (assuming that above step was successful). The question field is populated with the value returned from the server through the previous request
Step 4 User submits the form with dob, email, question and answer

关于如何使用动态表单实现这一点的任何想法?

我想我可以 以某种方式在dob之后抛出一个事件,电子邮件被填满,调用后端并得到问题。 使用变量隐藏/显示questnio并根据上述响应的成功/失败回答?

如果这是一个很好的方法,我怎么能感觉到用户填写了前两个字段并进行了后端调用。如何在收到服务器响应后更新问题字段(特别是使用动态表单)?

如果不是,有更简单的方法吗?

1 个答案:

答案 0 :(得分:3)

I know this is a delayed answer, but I think essentially this Scotch.io post covers the basics of what you need to do.

You create a form group and swap out the validations based on the value of a field, and in the view, you hide the fields you disabled using ngIfs.