Source Code:
(back to article)
Submit
Result:
Report an issue
angular.module( 'Movie', ['Actor']) // In this module we need actors .factory('getMovies',...); angular.module( 'Actor', ['Movie']) // In this module We need movies .factory('getActors',...); // Aber wir werden eine kreisförmige DI haben. // Was kann man tun?