Ionic 2 / Angular 2错误:"属性' _value'类型' FormGroup'上不存在。"

时间:2017-01-12 11:28:44

标签: angular typescript ionic2

我尝试在表单构建器中获取值,并且出现此错误:

enter image description here

在我的保龄球中:

enter image description here

我不知道因为我的console.log工作了!

有我的代码:

import {Component, Input} from '@angular/core';
import {FormGroup} from "@angular/forms";

@Component({
  selector: 'address',
  templateUrl: 'address-component.html'
})

export class AddressComponentPage {
  @Input('group')
  public addressForm: FormGroup;

  ngOnInit() {
    console.log(this.addressForm._value.type);
  }
}

我想得到我的"输入"使用它来生成具有不同类型字段的表单字段的值。

有人有想法吗?

0 个答案:

没有答案