Created
September 10, 2015 10:40
-
-
Save afalchi82/fbae88da2db32d7078f6 to your computer and use it in GitHub Desktop.
Notes about common AngularJS elements
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ------------------------------------------- | |
Service | |
--------------------------------------------*/ | |
// Definizione | |
module.service('myService', function() { | |
this.browsers = ['Firefox', 'Chrome', 'Internet Explorer']; | |
}); | |
// Implementazione | |
module.controller('MyCtrl', function ($scope, myService) { | |
$scope.browsersList = myService.browsers; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment