gpt4 book ai didi

Angular7 Reactive Forms 输入属性值不会在 Controller /组件中更改,仅在 HTML 标记上更改

转载 作者:太空狗 更新时间:2023-10-29 17:53:15 25 4
gpt4 key购买 nike

我制作了一个具有反应式表单组的可重用组件。我有 2 个输入属性“名称”和“描述”,我正在使用 ngFor 设置这些输入属性来迭代组件。

不幸的是,即使我将表单控件组中的开始/默认值设置为输入属性,当我单击提交时,angular 会将这 2 个输入属性读取为“null”,而不是通过输入属性设置的值。

表单组 + 输入属性:

  @Input() categoryID;
@Input() categoryTitle;
@Input() categoryDescription;

categoryForm = new FormGroup({
categoryTitle: new FormControl(this.categoryTitle, [Validators.minLength(3), Validators.maxLength(50)]),
categoryDescription: new FormControl(this.categoryDescription, [Validators.minLength(5), Validators.maxLength(200)])
})

提交功能:

this.startLoading();

this.admin.updateCategory(this.categoryForm.value.categoryTitle, this.categoryForm.value.categoryDescription, this.categoryID)

如果我尝试直接提交有效的输入属性的值,但如果我对表单进行了修改,我将不再提交更改后的值,这样就没有意义了。

最佳答案

您应该在组件 View 初始化后创建 FormGroup。所以你可以实现AfterViewInit,把下面的代码放在ngAfterViewInitfunction中。

ngAfterViewInit(){
this.categoryForm = new FormGroup({
categoryTitle: new FormControl(this.categoryTitle, [Validators.minLength(3), Validators.maxLength(50)]),
categoryDescription: new FormControl(this.categoryDescription, [Validators.minLength(5), Validators.maxLength(200)])
})
}

关于Angular7 Reactive Forms 输入属性值不会在 Controller /组件中更改,仅在 HTML 标记上更改,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53049821/

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