试图让ng-include工作

时间:2014-10-08 18:28:07

标签: angularjs

学习角度并试图让一个非常简单的ng-include工作 tempHeader.html包含一行文本,无法显示。

<!DOCTYPE html>
<html ng-app="theApp">
  <head>
    <script src= "http://ajax.googleapis.com/ajax/libs/angularjs/1.2.15/angular.min.js"></script>
  </head>

  <body>
    <ng-include src="tempHeader.html"/>
  </body>
</html>

1 个答案:

答案 0 :(得分:1)

ng-include需要一个变量,因此你必须将你的字符串包装在引号中:

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

或设置变量并使用:

$scope.url = "tempHeader.html";
<ng-include src="url"/>