angular 2包括html模板

前端之家收集整理的这篇文章主要介绍了angular 2包括html模板前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在角度2我需要创建一个带有冗余部分的大型html模板.
因此,我想创建多个html模板,并将它们包含在主html文件中(如angular1中的ng-include)

但是如何在主模板中包含子模板?

例:

<!-- test.html -->

<div>
    this is my Sub-Item
    <!-- include sub1.html here-->
</div>
<div>
    this is second Sub-Item
    <!-- include sub2.html here-->
</div>

<!-- sub1.html -->
<div>
    <button>I'am sub1</button>
</div>

<!-- sub2.html -->
<div>
    <div>I'am sub2</div>
</div>
您可以创建sub1 sub2等组件.在这些子组件上添加这些html文件作为模板.

在主html上分别调用组件选择器.它会工作

原文链接:https://www.f2er.com/angularjs/143737.html

猜你在找的Angularjs相关文章