Angular:没有html标签的ng-content

时间:2018-04-18 09:05:19

标签: angular html-table projection ng-content

我有两个组成部分:

App.component.html

<table>
  <tr>
    <td>something</td>
  </tr>
</table>

Table.component.html(定义表格)

<ng-content></ng-content>

结果

<tbody _ngcontent-c0>
   <tr _ngcontent-c0>
      <td _ngcontent-c0>something</td>
   </tr>
</tbody>

为什么有tbody-tag?有没有办法从ng-content中删除标签? 我只需要在html中显示带有子元素的tr。预期结果应该更像:

<tr _ngcontent-c0>
   <td _ngcontent-c0>something</td>
</tr>

0 个答案:

没有答案