JustDoItTomorrow
3/7/2018 - 10:57 PM

响应式表单:FormControl

export class HeroDetailComponent {
  name = new FormControl();
}
<h2>Hero Detail</h2>
<h3><i>Just a FormControl</i></h3>
<label class="center-block">Name:
  <input class="form-control" [formControl]="name">
</label>