gpt4 book ai didi

Angular react 形式将 form.values 转换为模型

转载 作者:太空狗 更新时间:2023-10-29 18:24:11 26 4
gpt4 key购买 nike

我有一个由界面表示的模型。

export interface MyModel {
id: number;
enabled: boolean;
name: string;
city: string;
country: string;
}

当我发布 react 形式时,所有值都在 form.value 中是字符串类型。我试图通过使用 <MyModel> 来转换它语法但不起作用。

submitForm(form: FormGroup, event: Event) {
this.func(<MyModel>form.value);
}

您有什么想法可以处理吗?

我的表单设置如下:

setupForm() {
this.userForm = this.formBuilder.group({
id: [null, Validators.required],
enabled: [null, Validators.required],
name: [null, Validators.required],
city: [null, Validators.required],
country: [null, Validators.required]
});
}

最佳答案

像这样的东西应该可以工作:

Object.assign(this.movie, this.editForm.value);

它将所有匹配的属性从编辑表单值复制到原始对象中。

关于 Angular react 形式将 form.values 转换为模型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49373782/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com