formControl
我有一个包含可编辑(将是对象)和只读数据(将是 HTML 上的静态文本)组合的数组。有没有办法在 Angular 中做到这一点?我也可以使用FormArrays
和FormGroups
添加这个静态文本,但感觉不对。让我用一个例子来详细说明这个问题:
说,我有一个 JSON 对象,如下所示:
itemArray = [{
title: 'fancy item', // not a member of the form (read-only)
quantity: 0 // member of the form (editable)
},
{
title: 'weird item', // not a member of the form (read-only)
quantity: 1 // member of the form (editabe)
}
]
我使用 FormArrays 作为quantity
项目的字段。
this.formItems = new FormArray([
new FormGroup(
{
quantity: new FormControl(1, Validators.required),
title: new FormControl('Fancy item') // Readonly text for form group. What's the best way to add a enrichment data for a form group?
}
),
new FormGroup(
{
quantity: new FormControl(1, Validators.required),
title: new FormControl('Weird item') // Readonly text for form group. What's the best way to add a enrichment data for a form group?
}
)
]
);
但是,标题不是可编辑的项目。向 a 中添加额外数据的最佳方法是FormGroup
什么?
否则,我必须创建另一个单独的数组items
来管理这些额外的和不可编辑的数据。因此,我可以将 item 的字段拆分为两个单独的对象。1) staticDataForItems
、2) editableDataForItems
。
this.staticDataForItems = [{
title: 'Weird item',
}
];
this.editableDataForItems = new FormArray([
new FormGroup(
{
quantity: new FormControl(1, Validators.required),
}
),
new FormGroup(
{
quantity: new FormControl(1, Validators.required),
}
)
]
);
这是我不喜欢的解决方案。因为,在我的用例中,我可以将项目添加到数组或从数组中删除“项目”。我不想处理formArray
不是面向未来的 2 个数组(items 和 )。
如果我有只读(只读 HTML 元素)和可编辑数据(输入 HTML 元素)数据的组合,我如何将这两个数组组合成 1 个单个数组。
我既想从表单验证中受益,又想以一种好的方式添加额外的数据。
您可以在下面找到一个工作示例:
https://stackblitz.com/edit/angular-gw1c6d?file=app%2Fapp.component.ts
谢谢。