0
我想顯示另一個組件的內容。 這是我menu.component.html
,我想在app.component.html
顯示:如何在另一個組件中顯示組件的內容?
<div class="Tree">
<tree-root [nodes]="nodes">
<ng-template #treeNodeTemplate let-node let-index="index">
<a><span>{{ node.data.description }}</span></a>
</ng-template>
</tree-root>
</div>
我使用angular-tree-component
顯示在樹表單數據。
這是我app.component.html
這裏我使用的是<menu>
選擇該菜單組件的顯示菜單:
<menu [path]="path"></menu>
的問題是,我只得到了樹的第一個元素,而不是獲取數據以樹形式。
你肯定'nodes'正確初始化組件之間傳輸數據? – gsamaras
@gsamaras是的,我相信 – eli
@gsamaras的更多信息,看看這個問題:https://stackoverflow.com/questions/46785288/cant-show-the-contents-of-a-component-in-another-組件 – eli