Angularjs 数据 ng-include 不工作

Angularjs data-ng-include not working

我正在使用 angular js 创建单页应用程序。我正在调用一个函数 return url for data-ng-include.

示例:

<script>
  function theURL(){
  return 'demo.html';
  }
</script>


 <div ng-app="">
  <div data-ng-include="'theURL()'">
  </div>
 </div>

但是上面的代码没有从函数中获取 url returned,因此没有加载部分页面。你能帮忙吗?

尝试:

<div ng-include="theURL()"></div>

但如果它不起作用,你的控制器在哪里?你的 $scope 在哪里?

$scope.theUrl = function(){
  return 'demo.html';
}

您控制器中的这个将 100% 工作。