forms - 重用单个 Angular 5 react 形式元素

标签 forms angular5 reactive

我仍在学习 Angular 5 并开始使用“响应式(Reactive)”表单模型。但是,我能找到的几乎每个示例和教程都让您在一个模板中创建整个表单。通常在 AngularJS 1.x 中,我们会将每个字段存储在自己的指令中,然后将它们连接在一起以创建一个表单以减少重复。

有没有办法只使用一个文件并包含模板和所有验证的 Angular 5 响应式(Reactive)表单来做到这一点?我可以看到如何分两部分来完成,其中我将有一个包含表单元素 HTML、验证消息等的组件,但您还需要在完整表单的组件中创建 FormControl 并为其指定默认值和验证。

也许这是非常常见的,我只是没有正确搜索它,但是如果有人可以向我指出任何模式、教程或帮助,我将不胜感激,因为我觉得这是我的表单中缺少的最后一部分。谢谢!

最佳答案

如果其他人遇到这个问题,我能找到的最佳答案(并且至少被许多其他开发人员使用,即使不是最佳实践)是在父“主表单”组件中创建一个 FormGroup ,然后创建一个新的 FormControl 并将其附加到该 FormGroup。例如,这里是可重用表单控件的组件:

import {Component, OnInit, Input} from '@angular/core';
import {FormControl, FormGroup, Validators} from '@angular/forms';

@Component({
  selector: 'app-project-length',
  templateUrl: './project-length.component.html',
  styleUrls: ['./project-length.component.css']
})
export class ProjectLengthComponent implements OnInit {

 @Input() isFormSubmitted: boolean;
 @Input() projectForm: FormGroup;

 constructor() {
 }

 ngOnInit() {
 this.projectForm.addControl('projectLength', new FormControl(0, [Validators.required, this.hasCorrectLength]));
 }

 hasCorrectLength(control: FormControl): {[s: string]: boolean} {
   const length: number = control.value;
  if (length < 2 || length > 10) {
    return { 'incorrectLength' : true };
  }
  return null;
}

}

这是该表单元素组件的模板:
<div class="form-group" [formGroup]="projectForm">
<label for="project-length">project length</label>
<input
  class="form-control"
  type="number"
  id="project-length"
  placeholder="Enter project length"
  formControlName="projectLength"
/>
<span class="help-block" 
  *ngIf="!projectForm.controls['projectLength'].valid && (projectForm.controls['projectLength'].touched || isFormSubmitted)">
    please enter a project length between 2 and 9
</span>

这是父表单的组件(它已经有一些我正在研究的教程中的内置表单元素,并且只有一个可重用的表单元素组件):
import { Component, OnInit } from '@angular/core';
import {FormControl, FormGroup, Validators} from '@angular/forms';
import { Status} from '../shared/Status';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})
export class AppComponent implements OnInit{
  projectForm: FormGroup;
  statuses: Array<Status> = [
    {id: 1, name: 'Critical'},
    {id: 2, name: 'Stable'},
    {id: 3, name: 'Finished'}
  ];
  formSubmitted: boolean = false;

  ngOnInit() {
    this.projectForm = new FormGroup({
      namey: new FormControl(null, [Validators.required, this.cannotBeTest1]),
      email: new FormControl(null, [Validators.required, Validators.email]),
      status: new FormControl('1')
    });
  }

  onSubmit() {
    console.log(this.projectForm);

    this.formSubmitted = true;
    if (this.projectForm.valid) {
    console.log('Form data:');
    console.log(this.projectForm);
  }
}
cannotBeTest1(control: FormControl): {[s: string]: boolean} {
  ...
}
}

以下是主要表单组件模板的重要部分:
<div class="container">
  <div class="row">
    <div class="col-xs-12 col-sm-10 col-md-8 col-sm-offset-1 col-md-offset-2">
      <form class="ui form-vertical" [formGroup]="projectForm" (ngSubmit)="onSubmit()">
        ...
        <app-project-length [projectForm]="projectForm" [isFormSubmitted]="formSubmitted"></app-project-length>
        ...

关于forms - 重用单个 Angular 5 react 形式元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47859538/

相关文章:

javascript - 为什么动态值不会以这种形式打印?

asp.net-mvc - ASP.NET MVC 3 多个模型到单个表单

angular - 循环依赖错误 TransferHttpCacheModule、LocalizeRouterModule、TranslateModule

r - 基于不同 react 值的 Shiny react 值

javascript - Extjs,在表单中执行标准提交时处理成功或失败

php - 如何在自动生成for循环中从html表单中获取唯一值

angular - 如何将代码片段放入 Angular 5 *.component.html

javascript - 在产品模式下不编译 Angular 5 的代码

java - Bean 验证不适用于 spring webflux

r - 在 react 性数据框中具有隔离的或非 react 性的列