已经有一些博客针对此错误发布了,但没有为 FormGroup 指定任何博客,它们都使用 FormArray 提供了解决方案
出于某种目的,我不得不在 Angular 4 中创建一个嵌套的 FormGroup,当我在开发模式下使用该代码时,它没有显示任何问题并且编译完美。但是,当我尝试在生产模式下编译相同的代码时,它会抛出“属性'控件'不存在于类型'AbstractControl'”的错误。
组件.ts:
import { Component, OnInit } from '@angular/core';
import { CustomerService } from '../../service/customer.service';
import { FormControl,FormGroup,FormBuilder,Validators,FormArray } from '@angular/forms';
enter code here
@Component({
selector: 'app-customer',
templateUrl: './customer.component.html',
styleUrls: ['./customer.component.css'],
providers: [CustomerService,GeolocationService]
})
export class CustomerComponent implements OnInit {
sheduleForm:FormGroup;
constructor(private service:CustomerService,private geoLocation:GeolocationService,private router:Router,private fb: FormBuilder) {
this.sheduleForm = fb.group({
user_schedule_details:fb.group({
mon:fb.group({
schedule_time:['00:00:00'],
status:[false]
}),
tue:fb.group({
schedule_time:['00:00:00'],
status:[false]
}),
wed:fb.group({
schedule_time:['00:00:00'],
status:[false]
}),
thu:fb.group({
schedule_time:['00:00:00'],
status:[false]
}),
fri:fb.group({
schedule_time:['00:00:00'],
status:[false]
}),
sat:fb.group({
schedule_time:['00:00:00'],
status:[false]
}),
sun:fb.group({
schedule_time:['00:00:00'],
status:[false]
})
}),
time_zone: [d.getTimezoneOffset()],
time_format : [false],
city:[null],
state:[null],
});
}
组件.html:
<form [formGroup]="sheduleForm" (ngSubmit)="saveShedule(sheduleForm.value)" novalidate>
<div class="schedule_time">Schedule Time:
<span>
<md-input-container>
<input type="time" mdInput [formControl]="sheduleForm.controls['user_schedule_details'].controls['mon'].controls['schedule_time']">
</md-input-container>
</span>
</div>
</div>
...... so on.....
所以我在这个 html 中遇到问题[formControl]="sheduleForm.controls['user_schedule_details'].controls['mon'].controls['schedule_time']" 任何人都可以帮助我。我知道这个表单控件名称看起来很奇怪。但只有这样我才能访问表单值。如果这不是使用 formControl 的正确方法,请告诉我,我可以用什么代替?