slam4:richclient:angularjs:routing

Différences

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

Lien vers cette vue comparative

slam4:richclient:angularjs:routing [2016/03/15 08:18] – [4.2- Route avec paramètre passé] jcheronslam4:richclient:angularjs:routing [2019/08/31 14:21] (Version actuelle) – modification externe 127.0.0.1
Ligne 58: Ligne 58:
 <sxh html;title:views/route1-template.html> <sxh html;title:views/route1-template.html>
 <h1>Route1</h1> <h1>Route1</h1>
-<div ng-bind="content1"></div>+<div ng-bind="rtCtrl1.content1"></div>
 </sxh> </sxh>
 ===== -- Configuration du routage ===== ===== -- Configuration du routage =====
Ligne 72: Ligne 72:
                 when('/route1', {                 when('/route1', {
                     templateUrl: 'views/route1-template.html',                     templateUrl: 'views/route1-template.html',
-                    controller: 'RouteController'+                    controller: 'RouteController', 
 +                    controllerAs:'rtCtrl1'
                 });                 });
         }]);         }]);
Ligne 108: Ligne 109:
                     templateUrl: 'views/route1-template.html',                     templateUrl: 'views/route1-template.html',
                     controller: 'RouteController',                     controller: 'RouteController',
-                    controllerAs: 'rtCtrl'+                    controllerAs: 'rtCtrl1'
                 }).                 }).
                 when('/route2/:nom', {                 when('/route2/:nom', {
Ligne 172: Ligne 173:
 Il est possible de définir la route par défaut : celle qui sera utilisée si toutes les autres routes ne trouvent pas leur correspondance : Il est possible de définir la route par défaut : celle qui sera utilisée si toutes les autres routes ne trouvent pas leur correspondance :
  
-<sxh javascript;title:app/routing.js;highlight:[11,12]>+<sxh javascript;title:app/routing.js;highlight:[12,13]>
 angular.module("sampleApp").config(['$routeProvider', angular.module("sampleApp").config(['$routeProvider',
        function($routeProvider) {        function($routeProvider) {
Ligne 178: Ligne 179:
                when('/route1', {                when('/route1', {
                    templateUrl: 'views/route1-template.html',                    templateUrl: 'views/route1-template.html',
-                   controller: 'RouteController'+                   controller: 'RouteController', 
 +                    controllerAs: 'rtCtrl1'
                }).                }).
                when('/route2/:nom', {                when('/route2/:nom', {
                    templateUrl: 'views/route2-template.html',                    templateUrl: 'views/route2-template.html',
-                   controller: 'RouteController'+                   controller: 'RouteController', 
 +                    controllerAs: 'rtCtrl2'
                }).otherwise({                }).otherwise({
             redirectTo: '/route1'             redirectTo: '/route1'
Ligne 204: Ligne 207:
  
 Le lien inexistant vers **#/route3** conduit bien maintenant à la route par défaut **route1**  Le lien inexistant vers **#/route3** conduit bien maintenant à la route par défaut **route1** 
- 
- 
 ==== -- Masquage du # dans l'URL ==== ==== -- Masquage du # dans l'URL ====
  
Ligne 212: Ligne 213:
 Pour masquer le # dans les urls utilisées, il est nécessaire d'injecter le service **$locationProvider** dans la configuration du routeur, pour activer le mode html5 : Pour masquer le # dans les urls utilisées, il est nécessaire d'injecter le service **$locationProvider** dans la configuration du routeur, pour activer le mode html5 :
  
-<sxh javascript;title:routing.js;highlight:[1,14,15,16]>+<sxh javascript;title:routing.js;highlight:[1,15,16,17]>
 angular.module("sampleApp").config(['$routeProvider','$locationProvider', angular.module("sampleApp").config(['$routeProvider','$locationProvider',
        function($routeProvider,$locationProvider) {        function($routeProvider,$locationProvider) {
Ligne 218: Ligne 219:
                when('/route1', {                when('/route1', {
                    templateUrl: 'views/route1-template.html',                    templateUrl: 'views/route1-template.html',
-                   controller: 'RouteController'+                   controller: 'RouteController', 
 +                    controllerAs: 'rtCtrl1'
                }).                }).
                when('/route2/:nom', {                when('/route2/:nom', {
                    templateUrl: 'views/route2-template.html',                    templateUrl: 'views/route2-template.html',
-                   controller: 'RouteController'+                   controller: 'RouteController', 
 +                    controllerAs: 'rtCtrl2'
                }).otherwise({                }).otherwise({
             redirectTo: '/route1'             redirectTo: '/route1'
Ligne 280: Ligne 283:
 RewriteRule ^ v_main.html [L] RewriteRule ^ v_main.html [L]
 </sxh> </sxh>
- 
 ===== -- Conservation de variables entre changements de vues ===== ===== -- Conservation de variables entre changements de vues =====
  
Ligne 287: Ligne 289:
 <sxh html;title:views/route2-template.html> <sxh html;title:views/route2-template.html>
 <h1>Route2</h1> <h1>Route2</h1>
-<div>Bienvenue M. {{params.nom}} {{params.prenom}}</div>+<div>Bienvenue M. {{rtCtrl2.params.nom}} {{rtCtrl2.params.prenom}}</div>
 <div><label>Entrez votre code : <input type="text" ng-model="code"></label></div> <div><label>Entrez votre code : <input type="text" ng-model="code"></label></div>
 </sxh> </sxh>
Ligne 314: Ligne 316:
  
 <sxh javascript;title:controllers.js;highlight:[1,4]> <sxh javascript;title:controllers.js;highlight:[1,4]>
-angular.module("sampleApp").controller("RouteController",["$scope","$routeParams","code",function($scope,$routeParams,code){ +angular.module("sampleApp").controller("RouteController",["$routeParams","code",function($routeParams,code){ 
- $scope.content1="Contenu du template de route1"; + this.content1="Contenu du template de route1"; 
- $scope.params=$routeParams; + this.params=$routeParams; 
- $scope.code=code;+ this.code=code;
 }]); }]);
 </sxh> </sxh>
Ligne 324: Ligne 326:
 <sxh javascript;title:views/route2-template.html;highlight:[3]> <sxh javascript;title:views/route2-template.html;highlight:[3]>
 <h1>Route2</h1> <h1>Route2</h1>
-<div>Bienvenue M. {{params.nom}} {{params.prenom}}</div> +<div>Bienvenue M. {{rtCtrl2.params.nom}} {{rtCtrl2.params.prenom}}</div> 
-<div><label>Entrez votre code : <input type="text" ng-model="code.value"></label></div>+<div><label>Entrez votre code : <input type="text" ng-model="rtCtrl2.code.value"></label></div>
 </sxh> </sxh>
  
  • slam4/richclient/angularjs/routing.1458026317.txt.gz
  • Dernière modification : il y a 6 ans
  • (modification externe)