I need to use a variable, in the angular, that I can use in more than one controller. Yes the controllers are in the same file. How can I do this?
.controller('denResCtrl', function($scope, $window, $http) {
$scope.fazerDenuncia = function (denuncia) {
var diaDenun = formatarData(denuncia.dataDenun);
var hora = denuncia.horaDenun;
var tipo = denuncia.tipoDenun;
var des = denuncia.descricao;
var end = $window.localStorage.getItem('logradouro');
var numeroEnd = denuncia.numeroEndereco;
var cid = $window.localStorage.getItem('cidade');
var estado = $window.localStorage.getItem('estado');
$http.get('http://localhost:8888/sistemas/webApps/ionic/vcApp/www/php/getCordenates.php?end='+end+'&numeroEnd='+numeroEnd+'&cid='+cid+'&estado='+estado).success(function (data) {
var coordenadas = data;
})
}
})
The variables that are in the current controller, I created in it, and did not exist.