我试图在 中包含一个 HTML 片段ng-repeat
,但我无法让包含工作。似乎当前的语法与ng-include
以前不同:我看到许多示例使用
<div ng-include src="path/file.html"></div>
但是在官方文档中,它说要使用
<div ng-include="path/file.html"></div>
但随后在页面下方显示为
<div ng-include src="path/file.html"></div>
不管怎样,我试过了
<div ng-include="views/sidepanel.html"></div>
<div ng-include src="views/sidepanel.html"></div>
<ng-include src="views/sidepanel.html"></ng-include>
<ng-include="views/sidepanel.html"></ng-include>
<ng:include src="views/sidepanel.html"></ng:include>
我的代码片段不是很多代码,但它有很多事情要做;我在Dynamically load template insideng-repeat
中读到了可能会导致问题的内容,所以我sidepanel.html
只用 word替换了 的内容foo
,但仍然没有。
我还尝试直接在页面中声明模板,如下所示:
<script type="text/ng-template" id="tmpl">
foo
</script>
并运行ng-include
引用脚本的所有变体id
,但仍然没有。
我的页面中有更多内容,但现在我将其简化为:
<!-- index.html -->
<html>
<head>
<!-- angular includes -->
</head>
<body ng-view="views/main.html"> <!-- view is actually set in the router -->
<!-- views/main.html -->
<header>
<h2>Blah</h2>
</header>
<article id="sidepanel">
<section class="panel"> <!-- will have ng-repeat="panel in panels" -->
<div ng-include src="views/sidepanel.html"></div>
</section>
</article>
<!-- index.html -->
</body>
</html>
标题呈现,但我的模板没有。我在控制台或 Node 中没有收到任何错误,如果我单击src="views/sidepanel.html"
开发工具中的链接,它会将我带到我的模板(并显示foo
)。