3
按鈕單擊我必須發佈併發送學生對象, 因此,請告訴我如何將formGroup對象綁定到ModelClass對象, 不想將數據手動逐個添加到變量。 我必須以單一方式進行綁定,而不是手動綁定。如何將FormGroup對象綁定到ModelClass對象
這是我formGroup對象
this.AMform = fb.group({
"Name": new FormControl("", [Validators.required, Validators.maxLength(10) ]),
"Code":new FormControl("", [Validators.required, Validators.maxLength(10) ]),
"Address": new FormControl("", [Validators.required, Validators.maxLength(10) ])
});
這是我的模型
class Student
{
public Name: string="";
public Code: string="";
public Äddress: string="";
}