是否有人知道是否有办法应用< ng-template>对于<中的所有列td-data-table>通过仅声明一个< ng-template>而不是每列都有一个。类似的东西:
<ng-template tdDataTableTemplate="{{columns}}" let-value="value">
<div>
<span>{{value.content}}</span>
<br>
<span *ngIf="enabler">{{value.subcontent}}</span>
</div>
</ng-template>