How can we specify no route path in UI-Router

0 votes
I'm having web page that contains all the links, but the problem is if the user attend to follow the unspecified path, How can i redirect to any custom link or display message to users?? Help me out please!!
Feb 11, 2020 in Angular by kartik
• 37,520 points
1,238 views

1 answer to this question.

0 votes

hey @kartik,

In order to route to any custom URL or displaying message when user attend to certain unspecified route path,there are generally two ways to define in $stateProvider which is used to configure the UI-router.

The code is as follow:

var app= angular.module([$stateProvider , function($stateProvider){

      $stateProvider 

      .state('root', {

      url: '/',

     template:  '<strong> You are at root....</strong>

       }

     

     .state('noroute', {

      url: '*path',

     template:  '<strong> No Root Available...</strong>

       }

}]);

In order to redirect to existing route when no route found, the above code can be discard and include the $urlRouterProvider as follow:

var app= angular.module([$stateProvider , $urlRouterProvider, function($stateProvider, $urlRouterProvider){

      $stateProvider 

      .state('root', {

      url: '/',

     template:  '<strong> You are at root....</strong>

       }

     urlRouterProvider.otherwise('/');

}]);

answered Feb 11, 2020 by anonymous
• 82,840 points

Related Questions In Angular

0 votes
1 answer

How can we redirect to an existing route using ngRoute?

Routing is just another way of fixing some content ...READ MORE

answered Feb 6, 2020 in Angular by Niroj
• 82,840 points
3,711 views
0 votes
1 answer

How can we provide condition based on certain resolve result obtained in routing with resolve?

Hey,  Let me consider that you have some ...READ MORE

answered Feb 11, 2020 in Angular by Niroj
• 82,840 points
2,003 views
0 votes
1 answer

How can we achieve transclusion using link function and directive controller?

Hey, The Term Transclusion means unhidding the context ...READ MORE

answered Feb 5, 2020 in Angular by Niroj
• 82,840 points
1,098 views
0 votes
1 answer

How can we redirect to another page from existing page on clicking alert?

hii, It is really simple to redirect from ...READ MORE

answered Feb 6, 2020 in Angular by Niroj
• 82,840 points
4,263 views
+1 vote
1 answer

What is the relationship between angularjs Scope with controller/view?

Let us consider the below block: <div ng-controller="emp"> ...READ MORE

answered Jan 20, 2020 in Web Development by Niroj
• 82,840 points

edited Jan 21, 2020 by Niroj 1,143 views
+1 vote
1 answer

What is css box module?

Hey, All the element present in html follows ...READ MORE

answered Jan 20, 2020 in Web Development by Niroj
• 82,840 points

edited Jan 21, 2020 by Niroj 1,206 views
0 votes
3 answers

Explain the difference between visibility:hidden; and display:none?

display:none means that the tag in question will ...READ MORE

answered Dec 14, 2020 in Web Development by Gitika
• 65,770 points
119,702 views
+1 vote
1 answer

How to access the Angularjs scope of a particular html element from our console?

Hello, You should follow the below steps:-- 1.Compile and ...READ MORE

answered Jan 21, 2020 in Web Development by Niroj
• 82,840 points

edited Jan 21, 2020 by Niroj 2,969 views
0 votes
1 answer

How do we work with UI-Router in AngularJS?

Hello @kartik,  As you know Ui-Router is more ...READ MORE

answered Feb 11, 2020 in Angular by Niroj
• 82,840 points
748 views
0 votes
1 answer

How can we achieve transclusion in AngularJs?

Hii,  In order to know what transclusion is ...READ MORE

answered Feb 5, 2020 in Angular by Niroj
• 82,840 points
679 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP