Benutzer:MovGP0/AngularJS
Zur Navigation springen
Zur Suche springen
MovGP0 | Über mich | Hilfen | Artikel | Weblinks | Literatur | Zitate | Notizen | Programmierung | MSCert | Physik |
|
AngularJS
[Bearbeiten | Quelltext bearbeiten]
|
|
|
|
|
Service vs. Factory vs. Provider[1]
[Bearbeiten | Quelltext bearbeiten]var myApp = angular.module('myApp', []);
// service style, probably the simplest one
myApp.service('helloWorldFromService', function() {
this.sayHello = function() {
return "Hello, World!"
};
});
// factory style, more involved but more sophisticated
myApp.factory('helloWorldFromFactory', function() {
return {
sayHello: function() {
return "Hello, World!"
}
};
});
// provider style, full blown, configurable version
myApp.provider('helloWorld', function() {
// In the provider function, you cannot inject any
// service or factory. This can only be done at the
// "$get" method.
this.name = 'Default';
this.$get = function() {
var name = this.name;
return {
sayHello: function() {
return "Hello, " + name + "!"
}
}
};
this.setName = function(name) {
this.name = name;
};
});
// hey, we can configure a provider!
myApp.config(function(helloWorldProvider){
helloWorldProvider.setName('World');
});
function MyCtrl($scope, helloWorld, helloWorldFromFactory, helloWorldFromService) {
$scope.hellos = [
helloWorld.sayHello(),
helloWorldFromFactory.sayHello(),
helloWorldFromService.sayHello()];
}
Restangular
[Bearbeiten | Quelltext bearbeiten]Directives
[Bearbeiten | Quelltext bearbeiten]Weblinks
[Bearbeiten | Quelltext bearbeiten]- Dan Wahlin: AngularJS in 20ish Minutes. In: YouTube. NG-Conf 2014, 16. Januar 2014, abgerufen am 4. Mai 2014 (englisch).
- angularjs: AngularJS + REST Made Simple: Connecting AngularJS to a Backend with REST & JSON. In: YouTube. 16. Januar 2014, abgerufen am 15. Mai 2014 (englisch).
- AngularJS API Docs. In: AngularJS. Google, abgerufen am 15. Mai 2014 (englisch).
Referenzen
[Bearbeiten | Quelltext bearbeiten]- ↑ Angular.js: service vs provider vs factory? In: StackOverflow. Abgerufen am 4. Mai 2014 (englisch).
|}