I have the following problem, I have more than one angular navigation state that uses the same controller, like this:
.state('app.estado-navegacao-1', {
url: "/estado-navegacao-1",
views: {
'menuContent': {
templateUrl: "templates/estado1.html",
controller: 'EstadoNavegacaoCtrl',
controllerAs: 'estado'
}
}
})
.state('app.estado-navegacao-2', {
url: "/estado-navegacao-1",
views: {
'menuContent': {
templateUrl: "templates/estado2.html",
controller: 'EstadoNavegacaoCtrl',
controllerAs: 'estado'
}
}
})
Well, I would like to "execute" this state, enter the controller, execute the normal methods and a function that varies according to the state of navigation chosen.
My controller looks something like this:
angular.module('controllers.estadonavegacao', [])
.controller('EstadoNavegacao', EstadoNavegacao);
function EstadoNavegacao() {
var vm = this;
vm.init = init;
vm.funcao = funcao;
vm.funcao2 = funcao2;
//Executa Normal nas duas chamadas
init();
function init() {
};
function funcao() {
//Quero executar após o estado de navegação 1
};
function funcao2() {
//Quero executar após o estado de navegação 2
};
};
Does anyone have any idea how to do this?