我将使用ng-include的文件路径是什么?

时间:2014-08-26 06:15:15

标签: html angularjs filepath partials angularjs-ng-include

我的角度项目的路径是这样的

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)。

有人看到我的错误吗?

1 个答案:

答案 0 :(得分:33)

ng-include的src属性需要一个字符串。您可以传递范围变量,也可以直接传递字符串。

<ng-include src=" 'templates/home.html' "></ng-include>