前端之家收集整理的这篇文章主要介绍了
AngularJs包括部分模板,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这个在我的主布局
文件
<body>
<header id="header" ng-controller="HeaderController"></header>
<div class="container" ng-view></div>
我有一个header.html部分模板在我的目录结构。
如何在我的应用程序中包含此模板?我认为角度自动包括处理控制器后的模板,但它不工作。
标头节点应该替换为此文件的内容。
从外部
文件中包含模板/ html片段的一种
方法是使用ng-include指令(
doc)。
<ng-include src="'/path/to/the/header.html'"></ng-include>
要么
<div ng-include src="'/path/to/the/header.html'"></div>
原文链接:https://www.f2er.com/angularjs/146236.html