Skip to content Skip to sidebar Skip to footer

Redirect After X Seconds Angularjs

I already saw this thread but it uses ui-router and I'm only using the $routeProvider of AngularJS. The code in the thread is: .controller('SeeYouSoonCtrl', ['$scope', '$state', '$

Solution 1:

You need to use $location service

$location.path('/anotherURL');

Solution 2:

By $location method :

code:

.controller('HomeController', ['$scope', '$state', '$location',
                                    function($scope, $state, $location) {    
      $location.path('/appurl');

        }])

Post a Comment for "Redirect After X Seconds Angularjs"