如何根据字符串值在 Angular 中创建 table?

How to create a table in Angular based on a string value?

我正在使用 Angular 4/5,我必须根据字符串值在 Angular 中创建多个 table。这是我为创建 table.

而制作的模型
class NameValuePair {
    Name: string;
    Value: string;
}

export class Family {
    Properties: Array<NameValuePair>;
    PropertyType: string;
}

下面给出的是 table 将包含的 hard-coded 个值。

export const list1: Family[] =
[
    {
      Properties: [
        {
          Name: "A",
          Value: "1"
        },

        {
          Name: "B",
          Value: "2"
        },
        {
          Name: "C",
          Value: "3"
        }
      ],
      PropertyType: "Type 1"
    },
    {
      Properties: [
        {
          Name: "A",
          Value: "10"
        },

        {
          Name: "B",
          Value: "20"
        },
        {
          Name: "C",
          Value: "30"
        }
      ],
      PropertyType: "Type 1"
    },
    {
      Properties: [
        {
          Name: "A",
          Value: "100"
        },

        {
          Name: "B",
          Value: "200"
        },
        {
          Name: "C",
          Value: "300"
        }
      ],
      PropertyType: "Type 2"
    }
  ]

现在,这里要注意的主要事情是 table 将基于 PropertyType 创建。与上述结构一样,数组前两个元素的 PropertyType 相同,即 Type 1 因此将创建 2 tables。一个带有 caption/heading:Type 1,另一个带有标题:Type 2。 第二个数组元素的 properties[] 数组将成为第一个 table 的第二行。我无法找到有关如何根据此 PropertyType 字符串值创建 table 的逻辑。然而,那是我在 component.html 文件中写的,但是这个逻辑是不正确的。

<div class="container pt-4" *ngFor="let element of list;let i = index">
  <ng-container *ngIf="list[i].PropertyType == list[i+1].PropertyType">
    <div style="padding-left:250px;font-size: 20px" class="pb-2">{{element.PropertyType}}</div>

    <table id="{{element.PropertyType}}" class="table table-striped table-bordered table-responsive pb-3 mx-auto">
      <thead style="height:40px">
        <tr align="center">
          <th *ngFor="let property of element.Properties" style="font-size: 20px">{{property.Name}}</th>
        </tr>
      </thead>

      <ng-container *ngFor="let element1 of list">
          <tr align="center" *ngIf="element.PropertyType == element1.PropertyType">
            <td *ngFor="let property of element1.Properties; let propertyIndex = index" style="width: 200px">
              <ng-container [ngSwitch]="propertyIndex">         
                <div *ngSwitchDefault style="font-size: 20px">{{property.Value}}</div>
              </ng-container>
            </td>
          </tr>
      </ng-container>
    </table>
  </ng-container>
</div>
这里的

list指的就是上面提到的list1常量数组。请帮忙。

您想首先将 list1 数据处理成更好的格式: 例如

export interface CustomTable {
  header: string,
  rows: Properties[]
}

const tables: CustomTable[] [];

list1.forEach(family => {
  // Check if this type is already in the table.
  const myTable: CustomTable = tables.find(customTable => customTable.header === family.propertyType);
  if (myTable) {
    // If it is, then add a new row
    myTable.rows.push(family.Properties);
  } else {
    // If not, create a new table
    myTable.rows.push({
      header: family.propertyType,
      rows: [family.Properties]
    });
  }
});

然后相应地更改您的 html。你可能想要

<ng-container ngFor="let table of tables">

并在其中某处:

<tr *ngFor=let row of tables.rows>

这是完整的逻辑,我没有添加css,因为没有人问。使用它它正在工作 https://stackblitz.com/edit/angular-hd9jey

import {
  Component
} from '@angular/core';
import {
  list1
} from './list1';
@Component({
  selector: 'my-app',
  templateUrl: './app.component.html',

})
export class AppComponent {
  tableArray = [];
  constructor() {
    let tableObject = {};
    list1.forEach(i => {
      if (tableObject[i.PropertyType]) {
        tableObject[i.PropertyType].push(i);
      } else {
        tableObject[i.PropertyType] = [i];
      }
      this.tableArray = Object.entries(tableObject);
    });
  }

}
<div class="container pt-4" *ngFor="let table of tableArray;index as i">

  <div style="padding-left:250px;font-size: 20px" class="pb-2">{{table[0]}}</div>
  <table id="{{table[0]}}" class="table table-striped table-bordered table-responsive pb-3 mx-auto">
    <thead style="height:40px">
      <tr align="center">
        <th *ngFor="let property of table[1][0].Properties" style="font-size: 20px">
          {{property.Name}}</th>
      </tr>
    </thead>


    <tr *ngFor="let property of table[1];" align="center">
      <td *ngFor="let va of property.Properties">
        {{va.Value}}
      </td>
    </tr>

  </table>
</div>