populating a table with angular2 *ngFor?

前端 未结 2 449
广开言路
广开言路 2021-01-13 05:59

I\'m trying to populate a bootstrap styled table with information retrieved from a get request.

I am getting the information just fine, but it is not being output in

2条回答
  •  孤街浪徒
    2021-01-13 06:35

    If you use an attribute selector instead and change the view to only create the columns td inside that template.

    Name

    view-employee-list component

    selector: '[view-employee-list]'
    template: '{{employee.name}}'
    

提交回复
热议问题