角度反应形成属性绑定

时间:2017-11-27 16:32:02

标签: angular angular-reactive-forms

在Angular ReactiveForm示例中,我看到了以下代码片段:

<form novalidate [formGroup]="myGroup">
   Name: <input type="text" formControlName="name">
   Location: <input type="text" formControlName="location">
</form>

myGroup定义为:

ngOnInit() {
   this.myGroup = new FormGroup({
       name: new FormControl('Todd Motto'),
       location: new FormControl('England, UK')
   });
}

对于属性绑定[formGroup] =“myGroup”,数据从模型(myGroup)流向视图。因此,当用户更改输入时,更改如何反映在模型中?

0 个答案:

没有答案