IT Nursery
I am getting an error and can’t find why. Here is the error: EXCEPTION: Error during instantiation of LocationStrategy! (RouterOutlet -> Router -> Location -> LocationStrategy). angular2.dev.js:23514 EXCEPTION: Error...
  • May 26, 2022
  • 0 Comments
Suppose you are using routes: // bootstrap myApp.config(['$routeProvider', '$locationProvider', function ($routeProvider, $locationProvider) { $routeProvider.when('/home', { templateUrl: 'partials/home.html', controller: 'HomeCtrl' }); $routeProvider.when('/about', { templateUrl: 'partials/about.html', controller: 'AboutCtrl' }); ... And...
  • May 23, 2022
  • 0 Comments
I am looking to detect a route change in my AppComponent. Thereafter I will check the global user token to see if the user is logged in so that...
  • April 30, 2022
  • 0 Comments