คำถามติดแท็ก angular-reactive-forms

14
วิธีปิดการใช้งานอินพุตในเชิงมุม 2
ในis_edit = trueการปิดการใช้งาน ... <input [disabled]="is_edit=='false' ? true : null" id="name" type="text" [(ngModel)]="model.name" formControlName="name" class="form-control" minlength="2"> ผมเพียงแค่ต้องการที่จะปิดการใช้งานการป้อนข้อมูลที่อยู่บนพื้นฐานหรือtruefalse ฉันพยายามทำตาม: [disabled]="is_edit=='false' ? true : null" [disabled]="is_edit=='true'" [disabled]="is_edit"

4
ควรใช้ FormGroup กับ FormArray เมื่อใด
FormGroup : FormGroupรวบรวมค่านิยมของเด็กแต่ละ FormControl เป็นหนึ่งวัตถุที่มีชื่อการควบคุมแต่ละเป็นกุญแจสำคัญใน const form = new FormGroup({ first: new FormControl('Nancy', Validators.minLength(2)), last: new FormControl('Drew') }); FormArray : FormArrayมวลรวมค่าของแต่ละ FormControl เด็กเป็นอาร์เรย์ const arr = new FormArray([ new FormControl('Nancy', Validators.minLength(2)), new FormControl('Drew') ]); ควรใช้เมื่อใด

13
วิธีค้นหาตัวควบคุมที่ไม่ถูกต้องในรูปแบบปฏิกิริยาเชิงมุม 4
ฉันมีรูปแบบปฏิกิริยาในเชิงมุมดังต่อไปนี้: this.AddCustomerForm = this.formBuilder.group({ Firstname: ['', Validators.required], Lastname: ['', Validators.required], Email: ['', Validators.required, Validators.pattern(this.EMAIL_REGEX)], Picture: [''], Username: ['', Validators.required], Password: ['', Validators.required], Address: ['', Validators.required], Postcode: ['', Validators.required], City: ['', Validators.required], Country: ['', Validators.required] }); createCustomer(currentCustomer: Customer) { if (!this.AddCustomerForm.valid) { //some app logic } } this.AddCustomerForm.valid ส่งคืนเท็จ แต่ทุกอย่างดูดี ฉันได้พยายามค้นหาด้วยการตรวจสอบคุณสมบัติสถานะในคอลเล็กชันการควบคุม …
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.