web-dev-qa-db-ja.com

ng-includeでどのファイルパスを使用しますか?

私のangularプロジェクトのパスは次のとおりです

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)が表示されません。

誰かが私の間違いを見ますか?

14
Zack

Ng-includeのsrc属性には文字列が必要です。スコープ変数を渡すか、文字列を直接渡します。

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