Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Routing redirection renders an incorrect view at first load #10041

Closed
ghusse opened this issue Nov 13, 2014 · 2 comments
Closed

Routing redirection renders an incorrect view at first load #10041

ghusse opened this issue Nov 13, 2014 · 2 comments

Comments

@ghusse
Copy link

ghusse commented Nov 13, 2014

Reproducted on angular 1.3.*, but not on 1.2.26.

Steps to reproduce, with this code (jsbin):

  1. Load the page
  2. You are redirected to /#/login -> OK
  3. ... but the displayed content comes from another view (called needsAuth) -> KO
  4. Reload
  5. The URI ends with /#/login -> OK
  6. The content comes from the login view -> OK

On First load:
firstload

After a reload:
afterreload

HTML Code:

<!DOCTYPE html>
<html ng-app='app'>
<head>
  <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.2/angular.js"></script>
  <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.2/angular-route.js"></script>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  <div ng-view>
  </div>
</body>
</html>

Javascript code

var template = '{{vm.text}}';

angular
  .module('app', ['ngRoute'])
  .config(['$routeProvider', routes])
  .controller('needsAuthController', needsAuthController)
  .controller('loginController', loginController)
  .run(['$rootScope', '$location', registerRedirection]);

function routes($routeProvider){
  $routeProvider
    .when('/needsAuth', {
      controller: 'needsAuthController',
      controllerAs: 'vm',
      template: template
    })
    .when('/login', {
      controller: 'loginController',
      controllerAs: 'vm',
      template: template
    })
    .otherwise({
      redirectTo: '/needsAuth'
    });
}

function needsAuthController(){
  var vm = this;

  vm.text = 'needsAuth';
}

function loginController(){
  var vm = this;

  vm.text = 'login';
}

function registerRedirection($rootScope, $location){
  $rootScope.$on('$routeChangeStart', function(event, next){
    $location.path('/login');
  });
}
@ryanhart2
Copy link
Contributor

Did you look at #9607 and #9678? They seem to address the same issue.

@ghusse
Copy link
Author

ghusse commented Nov 13, 2014

Indeed, the issue is similar to #9607.

I replaced $routeChangeStart by $locationChangeStart and it works (which is weird because of #9678)

@ghusse ghusse closed this as completed Nov 13, 2014
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants