javascript - not - ng-include con una variable para src
ng-include angularjs (2)
Intente lo siguiente:
<ng-include src="view"> </ng-include>
-----------------O----------------------
Puedes hacerlo de esta manera,
Ver:
<div data-ng-include data-ng-src="getPartial()"></div>
Controlador:
function AppCtrl ($scope) {
$scope.getPartial = function () {
return ''partials/issues.html'';
}
}
Me gustaría cambiar el ng-includes src con una variable. Actualmente esto es lo que tengo.
<div class=''alignRightCenter'' id=''rightContent''>
<ng-include src="''{{view}}''"> </ng-include>
</div>
Y aquí está el controlador:
ctrl.controller(''contentCtrl'', [''$scope'', function($scope) {
$scope.view = "partials/setListName.tpl.html";
}]);
Desafortunadamente, no puedo usar ng-view porque ya se está utilizando para llegar a esta página. ¿Es posible hacer algo como este trabajo?
Me gusta esto. Necesitas usar comillas simples y +, como lo harías en JavaScript.
<ng-include src="''/path/to/template''+ my.variable +''.html''"></ng-include>