I have a service like the folowing one:
var app = angular.module('app');
app.service('messagingService', function($http){
this.getMessages = function(offset, limit, successCallback, errorCallback){
// some stuff goes here
};
});
I include this file and afterwards I include my controller file.
My controller starts like this
function Inbox($scope, $http, messagingService) {
}
But when I load my page I get the following error:
Error: [$injector:unpr] http://errors.angularjs.org/undefined/$injector/unpr?p0=messagingServiceProvider%20%3C-%20messagingService at Error () at https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0/angular.min.js:6:453 at https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0/angular.min.js:32:320 at Object.c [as get] (https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0/angular.min.js:29:461) at https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0/angular.min.js:32:388 at c (https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0/angular.min.js:29:461) at d (https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0/angular.min.js:30:130) at Object.Xb.instantiate (https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0/angular.min.js:31:284) at $get (https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0/angular.min.js:61:304) at https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0/angular.min.js:48:476
When I use my service code in same file as the controller it works well. What am I missing here? Thanks