29

我想用一个变量来改变 ng-includes src。目前这就是我所拥有的。

 <div class='alignRightCenter' id='rightContent'>
    <ng-include src="'{{view}}'"> </ng-include>
</div>

这是控制器:

ctrl.controller('contentCtrl', ['$scope', function($scope) {
      $scope.view = "partials/setListName.tpl.html";
  }]);

不幸的是,我不能使用 ng-view,因为它已经被用来让我进入这个页面。有可能做这样的事情吗?

4

2 回答 2

53

尝试如下:

<ng-include src="view"> </ng-include>

- - - - - - - - -或者 - - - - - - - - - - -

你可以这样做,

看法:

<div data-ng-include data-ng-src="getPartial()"></div>

控制器:

function AppCtrl ($scope) {
  $scope.getPartial = function () {
      return 'partials/issues.html';
  }
}
于 2014-02-18T17:06:18.477 回答
11

像这样。您需要使用单引号和 +,就像在 JavaScript 中一样。

<ng-include src="'/path/to/template'+ my.variable +'.html'"></ng-include>
于 2017-02-15T17:53:29.477 回答