博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Angular2 Form] Reactive Form, FormBuilder
阅读量:6701 次
发布时间:2019-06-25

本文共 1210 字,大约阅读时间需要 4 分钟。

Import module:

import { NgModule } from '@angular/core';import { CommonModule } from '@angular/common';import { MessageComponent } from './message.component';import messageRoutes from './message.routes';import {FormsModule, ReactiveFormsModule} from "@angular/forms";@NgModule({  imports: [    CommonModule,    FormsModule,    ReactiveFormsModule,    messageRoutes  ],  declarations: [MessageComponent]})export default class MessageModule { }

 

Define the html:

 

ts:

 
reactiveForm: FormGroup;
constructor(fb: FormBuilder) {    this.reactiveForm = fb.group({      title: [        'Title',        [          Validators.required,          Validators.minLength(3)        ]      ],      description: [        'Description',        [Validators.required]      ]    })  }}

group() function take an object param, each object stands for a field in template, which refer to 'formControlName'.

// title <-- formControlName="title"      title: [        'Title', // <-- Default value        [          Validators.required,          Validators.minLength(3)        ] // <-- Validations      ],

 

转载地址:http://etgoo.baihongyu.com/

你可能感兴趣的文章
【自己给自己题目做】:如何在Canvas上实现魔方效果
查看>>
beta冲刺第三天
查看>>
beta第二天
查看>>
工作中常用的但是又容易忽略的问题
查看>>
css特殊情况
查看>>
NOIP2018滚粗记
查看>>
mysql 中 all any some 用法
查看>>
目前最细致清晰的NSDictionary以及NSMutableDictionary用法总结(转)
查看>>
后代选择器
查看>>
WebView性能优化--独立进程
查看>>
A. Case of the Zeros and Ones----解题报告
查看>>
洛谷 P2735 电网 Electric Fences Label:计算几何--皮克定理
查看>>
Vue + webpack 项目配置化、接口请求统一管理
查看>>
关于电脑的基础单词笔记
查看>>
andriod 新建 Activity_ Form (详细设置)
查看>>
Java中的==和equals区别
查看>>
烂泥:【解决】word复制windows live writer没有图片
查看>>
Coursera课程 Programming Languages, Part C 总结
查看>>
安卓App设计博文
查看>>
redis 操作
查看>>