繁体   English   中英

如何从ng-container Angular 2中的数组渲染数据?

[英]How render data from array in ng-container Angular 2?

我想将数据从数组呈现到HTML表中。 这是我的模型:

export class Section {
    public id :number;
    public name: string;
    constructor(id: number, theName: string) {
        this.id = id;
        this.name = theName;
    }
}

我将其导入并填写到组件中:

import { Section } from "../models/registerSection.model";

数组声明:

sectionList: Array<Section>;

数组填充在构造函数中:

    this.sectionList = [new Section(1, "A"),
        new Section(2, "B*"),
        new Section(3, "C"),
        new Section(4, "D")];

这就是我试图在模板中呈现数据的方式:

        <ng-container *ngFor='let data of Section'>
            <tr>
                <td colspan="7">{{data.name}}</td>
            </tr>
        </ng-container>

但是表是空的。 在DOM中,我看到以下内容:

<!--template bindings={
  "ng-reflect-ng-for-of": null
}-->

我究竟做错了什么? 在调试中,我可以看到该数组包含数据。

它应该是:

<ng-container *ngFor='let data of sectionList'>

现在,您正在尝试遍历Section模型,而不是sectionList该模型实例的sectionList

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM