2

使用 Angular4 ReactiveForm(我正在使用的版本)创建一个表单。我在哪里有一个表格,里面有代码、年份和类别列表。

主要形式:

  • 代码
  • 类别[]
    • 代码
    • 描述
    • 命令
    • 产品[]
      • 代码
      • 描述
      • 价格

但我试图以下列方式显示表单,其中类别列表和每个类别中的产品都是行,并且都将显示在同一个表中(示例):

<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>
4

1 回答 1

2

首先,您应该使用ng-templatesincetemplate在 v4 中已弃用。

如果您查看浏览器的控制台,可能会看到如下错误:

ERROR 错误:找不到带有路径的控件:'ARRAY_NAME -> FORM_CONTROL_NAME'

要修复它,您必须将 with 包装category起来formGroupName

<tr [formGroupName]='i'>
  ...
</tr>

对于products

<div="products" formArrayName="products">
  ...
      <tr [formGroupName]='j'>
        ...
      </tr>
  ...
</div>

如果文件上的所有内容都正确,它应该可以工作component

于 2017-04-27T01:04:47.187 回答