slam4:richclient:angularjs:elements

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentes Révision précédente
Prochaine révision
Révision précédente
slam4:richclient:angularjs:elements [2015/02/12 02:05] – [Directive] jcheronslam4:richclient:angularjs:elements [2019/08/31 14:21] (Version actuelle) – modification externe 127.0.0.1
Ligne 144: Ligne 144:
 </html> </html>
 </sxh> </sxh>
 +
 +
 +===== Création d'objets injectables =====
 +==== Factory ====
 +
 +<sxh javascript>
 +monApp.factory('maFactory', function() {
 +    return {
 +        "member": "value",
 +        "method": function(){
 +            // faire qqchose
 +        }
 +    }
 +});
 +</sxh>
 +
 +**maFactory** est un singleton (une seule instance), et devient injectable :
 +
 +Injection dans un contrôleur :
 +
 +<sxh javascript>
 +app.controller("monController",["$scope","maFactory",function($scope,maFactory){
 +    //Utilisation de maFactory
 +    $scope.member=maFactory.member;
 +    maFactory.method();
 +    ...
 +}]);
 +</sxh>
 +
 +==== Service ====
 +
 +Le service permet également de créer un objet injectable, mais d'une autre façon :
 +
 +<sxh javascript>
 +monApp.service('monService', function() {
 +    this.name = "Anonymous";
 +    this.id = null;
 +    this.login = function(){
 +        // faire un truc pour se connecter
 +    }
 +    this.logout = function(){
 +        // faire un truc pour se déconnecter
 +    }
 +});
 +</sxh>
 +
 +
  • slam4/richclient/angularjs/elements.1423703118.txt.gz
  • Dernière modification : il y a 6 ans
  • (modification externe)