如何使用Angular JS作为模板引擎?

时间:2012-12-28 16:00:37

标签: javascript html angularjs

post 详细介绍了如何在事件上绑定加载模板部分。

但是,如果我想在页面加载上加载模板部分 similair到像Smarty这样的模板引擎呢?

例如在Smarty:

<html>
<body>
{include file="templates/header.html"}
<span>Dude, this has too be possible in Angular JS...</span>
{include file="templates/footer.html"}
</body>
</html>

1 个答案:

答案 0 :(得分:9)

您可以使用ngInclude指令。可以在此处找到文档和示例:http://docs.angularjs.org/api/ng.directive:ngInclude