Search code examples
angularjsangularjs-ng-routeangularjs-1.6

Routing Demo stops working when updated to AngularJS 1.6


When I updated the code snippet from this answer to use AngularJS 1.6, it stopped working.

The Login and Register links no longer change the view.

The DEMO

var app = angular.module("myApp", ["ngRoute"])
app.config(function($routeProvider) {
  $routeProvider.when('/', {
      template: `<h1>Login</h1>`,
      controller: 'loginCtrl'
    })
    .when('/register', {
      template: `<h1>Register</h1>`,
      controller: 'RegisterCtrl'
    })
    .otherwise({
      redirectTo: '/'
    });

});
app.controller('loginCtrl', function($scope) {
  $scope.name = "Login";

});
app.controller('RegisterCtrl', function($scope) {
  $scope.name = "Register";

})
<!DOCTYPE html>
<html ng-app="myApp">

<head>
  <meta charset="utf-8" />
  <title>AngularJS User Registration and Login Example  </title>
</head>

<body>
  <a href="#/login">Login</a>
  <a href="#/register">Register</a>
  <div class="mainContainer" ng-view></div>
  <script src="//unpkg.com/[email protected]/angular.js"></script>
  <script src="//unpkg.com/[email protected]/angular-route.js"></script>
</body>

</html>


Solution

  • Routes in Angular 1.6 changed from #/state to #!/state

    You should change your ref to:

     <a href="#!/login">Login</a>
     <a href="#!/register">Register</a>
    

    DEMO

    var app = angular.module("myApp", ["ngRoute"])
    app.config(function($routeProvider) {
      $routeProvider.when('/', {
          template: `<h1>Login</h1>`,
          controller: 'loginCtrl'
        })
        .when('/register', {
          template: `<h1>Register</h1>`,
          controller: 'RegisterCtrl'
        })
        .otherwise({
          redirectTo: '/'
        });
    
    });
    app.controller('loginCtrl', function($scope) {
      $scope.name = "Login";
    
    });
    app.controller('RegisterCtrl', function($scope) {
      $scope.name = "Register";
    
    })
    <!DOCTYPE html>
    <html ng-app="myApp">
    
    <head>
      <meta charset="utf-8" />
      <title>AngularJS User Registration and Login Example  </title>
    </head>
    
    <body>
      <a href="#!/login">Login</a>
      <a href="#!/register">Register</a>
      <div class="mainContainer" ng-view></div>
      <script src="//unpkg.com/[email protected]/angular.js"></script>
      <script src="//unpkg.com/[email protected]/angular-route.js"></script>
    </body>
    
    </html>