将范围数据传递给ng

我正在寻找将当前组件范围数据传递到ng-content指令的解决方案。

我已经将app-table组件模板与我想要传入子内容的数据一起使用,如下所示:

<!-- some html before -->
<table>
    <!-- complex header markup with sorting/filtering support -->

    <tr *ngFor="let item of data">
         <ng-content [value]="item"></ng-content> //how to pass data?
    </tr>
</table>
//some html after

和我想要使用这些数据的页面模板:

<app-table>
     <td>{{value.Name}}</td>
     ...
</app-table>

这可能吗?


我想你可以在这里找到你的答案:Angular 2通过绑定将html传递给ng-content。

不幸的是,ng-content组件记录很糟糕。 根据Angular GitHub的问题(https://github.com/angular/angular.io/issues/3099),很快就会发生。

链接地址: http://www.djcxy.com/p/94701.html

上一篇: Pass scope data into ng

下一篇: Android push notification without firebase