Câu hỏi được gắn thẻ «angular2-formbuilder»

5
Sự khác biệt giữa formControlName và FormControl là gì?
Tôi đang sử dụng ReactiveFormsModuleAngular2 để tạo một thành phần có chứa biểu mẫu. Đây là mã của tôi: foo.component.ts : constructor(fb: FormBuilder) { this.myForm = fb.group({ 'fullname': ['', Validators.required], 'gender': [] }); } foo.component.html (với [formControl]): <div class="fields"> <div class="field"> <label>Fullname*</label> <input type="text" [formControl]="myForm.controls.fullname"/> </div> </div> <div class="inline fields"> …

10
ngModel không thể được sử dụng để đăng ký các điều khiển biểu mẫu với chỉ thị formGroup mẹ
Sau khi nâng cấp lên RC5, chúng tôi bắt đầu gặp lỗi này: ngModel cannot be used to register form controls with a parent formGroup directive. Try using formGroup's partner directive "formControlName" instead. Example: <div [formGroup]="myGroup"> <input formControlName="firstName"> </div> In your class: this.myGroup = new FormGroup({ firstName: new FormControl() }); …

Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.