tengo un servicio y un controlador de la siguiente manera:
.module('appCompra')
.service('propiedades', function() {
var stringValue = 'test string value';
return {
getString: function() {
return stringValue;
}
}
})
.controller('ordenCompra', ['$scope', '$rootScope', '$location', '$http', function ($scope, $rootScope, $location, $http, propiedades) {
console.log(propiedades.getString());
});
Y cuando trato de acceder al servicio en el controlador me retorna undefined y no se porque, alguien me podria ayudar con este problema?