Angularjs ng-include指令不起作用

时间:2014-06-04 04:06:58

标签: javascript angularjs

我在使用angularjs ng-include指令时遇到问题。我查了各种教程,但仍然无法解决。我想在'index.html'中显示'title.html'的内容。 'index.html'的内容:

 <html ng-app>
    <head>
    <script type="text/javascript" src="js/angular.min.js"></script>
    </head>
    <body>
    <h1 ng-model="name">hello {{"name"}}</h1>
    <h3 ng-include="'title.html'"></h3>
    </body>
    </html>

'title.html'的内容:“sometext”

我期待这样的输出: 你好名字 sometext

但是没有显示“sometext”。请帮助

1 个答案:

答案 0 :(得分:1)

您在单引号内不需要test.html。试试这个:

  <h3 ng-include="title.html"></h3>

此外,ng-include无法使用file:///协议,因此请确保您使用的是Web服务器。