我的角度项目的路径是这样的
web
server.py ##flask server program
app
static
app.js
controllers.js
etc...
templates
index.html
home.html
的index.html
<!-- this didn't work -->
<ng-include src="templates/home.html"><ng-include>
<!-- nor did this -->
<ng-include src="home.html"></ng-include>
home.html的
<h1> home! </h1>
除了我在输出中没有看到部分(home.html)。
有人看到我的错误吗?
答案 0 :(得分:33)
ng-include的src属性需要一个字符串。您可以传递范围变量,也可以直接传递字符串。
<ng-include src=" 'templates/home.html' "></ng-include>