使用Angular4 ReactiveForm创建表单(版本I' m using)。 我在哪里有一个表格,其中包含代码,年份和类别列表。
主要表格:
但是我试图以下列方式显示表单,其中类别列表和每个类别中的产品都是所有行,并且都将显示在同一个表中(示例):
<input code>
<input year>
<table>
<tr>Category 1</tr>
<tr>Product 1.1</tr>
<tr>Product 1.2</tr>
<tr>Product 1.3</tr>
<tr>Category 2</tr>
<tr>Product 2.1</tr>
<tr>Product 2.2</tr>
</table>
<button addNewCategory />
<button addNewProduct />
我能够将类别显示为行,但我无法将每个类别中的产品显示为类别行下方的行:
我的打字稿形式:
ngOnInit() {
this.form = this._fb.group({
code: ['', Validators.required],
year: ['', Validators.required],
categories: this._fb.array([this.initCategory()])
});
}
initCategory() {
return this._fb.group({
code: ['', Validators.required],
desc: ['', Validators.required],
order: ['', Validators.required],
products: this._fb.array([this.initProduct()])
});
}
initProduct() {
return this._fb.group({
code: ['', Validators.required],
desc: ['', Validators.required],
price: ['', Validators.required]
});
}
搜索时,我被告知使用ngfor模板,但我无法使用它们,当我尝试使用它们时,模板标签内的内容不会显示。
如果我使用div,我可以在每个类别下面显示产品。但它在表格中不能很好地工作。
我的模板:
<div>
<form [formGroup]="form">
<input type="text" formControlName="code" />
<input type="text" formControlName="year" />
<table>
<div formArrayName="categories">
<template *ngFor="let category of form.controls['categories'].controls; let i=index">
<tr>
<td><input type="text" formControlName="code" /></td>
<td><input type="text" formControlName="desc" /></td>
<td><input type="text" formControlName="order" /></td>
</tr>
<div="products">
<template *ngFor="let product of category.controls['products'].controls; let j=index">
<tr>
<td><input type="text" formControlName="code" /></td>
<td><input type="text" formControlName="desc" /></td>
<td><input type="text" formControlName="price" /></td>
</tr>
</template>
</div>
</template>
</div>
</table>
</form>
</div>
答案 0 :(得分:2)
首先,您应该使用ng-template
,因为template
已在v4中弃用。
如果您查看浏览器的控制台,可能会发现如下错误:
错误错误:找不到路径控件:&#39; ARRAY_NAME - &gt; FORM_CONTROL_NAME&#39;
要解决此问题,您必须使用category
包裹formGroupName
:
<tr [formGroupName]='i'>
...
</tr>
对于products
:
<div="products" formArrayName="products">
...
<tr [formGroupName]='j'>
...
</tr>
...
</div>
如果component
文件中的所有内容都正确,则应该有效。