在angular-data-table中显示JSON数据

时间:2019-02-07 05:25:21

标签: angular typescript angular-datatables

我想在angular-data-table

中显示以下JSON数据集
{"_links":{"self":[{"href":"http://uni/api/v1/cycle1"},{"href":"http://uni/api/v1/cycle2"},{"href":"http://uni/api/v1/cycle3"}]}}

到目前为止,这是我的代码

  getBillingCycles() {
    this.BillingCyclesService.getBillingCycles()
    .subscribe((data) => {
     this.billing = [data];
     console.log(this.billing);
    });
  }

  <table class="table table-striped" [mfData]="billing" #mf="mfDataTable" [mfRowsOnPage]="5">
    <thead>
    <tr>
        <th style="width: 30%">
            <mfDefaultSorter by="billingcycle">Billing Cycle</mfDefaultSorter>
        </th>
        <th style="width: 70%">
            <mfDefaultSorter by="link">Link</mfDefaultSorter>
        </th>
    </tr>
    </thead>
    <tbody>
    <tr *ngFor="let item of mf.billing">
        <td>{{item.billingcycle}}</td>
        <td>{{item}}</td>
    </tr>
    </tbody>
    <tfoot>
    <tr>
        <td colspan="4">
            <mfBootstrapPaginator [rowsOnPageSet]="[5,10,25]"></mfBootstrapPaginator>
        </td>
    </tr>
    </tfoot>
</table>

我无法在表格中正确显示数据。它仅显示[object,object]。我只需要在左侧栏中显示对象编号,在右侧栏中显示hrefs。

1 个答案:

答案 0 :(得分:1)

Skydev,您的json是启动一个对象,因此您需要分离一个数组并在表中使用该数组。

我为您创建了堆叠闪电战。

https://stackblitz.com/edit/angular-data-table-muthu-yso865

HTML预览访问您需要访问mf.data变量的示例。

HTML:-

 <tr *ngFor="let item of mf.data; let i=index">
        <td>{{i+1}}</td>
        <td>{{item.href}}</td>
    </tr>

代码:-

 data={"_links":{"self":[{"href":"http://uni/api/v1/cycle1"},{"href":"http://uni/api/v1/cycle2"},{"href":"http://uni/api/v1/cycle3"}]}};

 console.log("Data",this.data._links.self);

屏幕截图:-

enter image description here