angular-docs-cn/public/docs/js/latest/api/forms/FormBuilder-class.jade

71 lines
1.4 KiB
Plaintext
Raw Normal View History

2015-04-19 13:53:18 -07:00
2015-04-22 08:06:51 -07:00
p.location-badge.
2015-04-23 08:27:36 -07:00
exported from <a href="/angular2/forms.html">angular2/forms</a>
2015-04-19 13:53:18 -07:00
defined in <a href="https://github.com/angular/angular/tree/master/modules/angular2/src/forms/form_builder.js#L26">angular2/src/forms/form_builder.js (line 26)</a>
:markdown
Creates a form object from a user-specified configuration.
# Example
2015-04-23 08:27:36 -07:00
This example creates a <a href="ControlGroup-class.html"><code>ControlGroup</code></a> that consists of a `login` <a href="Control-class.html"><code>Control</code></a>, and a nested
<a href="ControlGroup-class.html"><code>ControlGroup</code></a> that defines a `password` and a `passwordConfirmation` <a href="Control-class.html"><code>Control</code></a>.
2015-04-19 13:53:18 -07:00
```
var loginForm = builder.group({
login: ["", Validators.required],
passwordRetry: builder.group({
password: ["", Validators.required],
passwordConfirmation: ["", Validators.required]
})
});
```
.l-main-section
h2 Members
.l-sub-section
h3 array
pre.prettyprint
code.
2015-04-20 13:57:43 -07:00
array(controlsConfig:List, validator:Function = null)
2015-04-19 13:53:18 -07:00
:markdown
.l-sub-section
h3 control
pre.prettyprint
code.
2015-04-20 13:57:43 -07:00
control(value, validator:Function = null)
2015-04-19 13:53:18 -07:00
:markdown
.l-sub-section
h3 group
pre.prettyprint
code.
2015-04-20 13:57:43 -07:00
group(controlsConfig, extra = null)
2015-04-19 13:53:18 -07:00
:markdown