Explain general Routing workflow between several web pages

0 votes
Please, Explain the flow of routing process that occur when we route from one page to other using AngularJs framework.
Feb 10, 2020 in Angular by anonymous
• 37,510 points
518 views

1 answer to this question.

0 votes

hii,

Routing is just another way of fixing some content dynamically as part of your application.It is a key part of all websites and web applications in one way or another. 

It plays a central role in static HTML pages as well as in the most complex React web applications. Routing comes into play whenever you want to use a URL in your application.

Let us understand the basic flow of routing steps:

Imagingine i'm have an angular application running at an application level or client side.

And there is a request to the application to switch to new route through button or any other user interaction.

Once ng route receive new request the first step it does it change the URL of the browser that means we are going to see a browser URL change and prior to change the URL where are going to see couple of event to be raised in order:

  • First event which get fetched is $localchangestart and immediately after that we are going to see route change start.Once this event have been raised then actually changes the browser URL will be taking in place
  • Next immediately step is going is going to be jumping to the new route or loading the route related template. Prior to jumping to the new step it is going to raised another event i.e after changing the URL and before loading the route known as $locationChangeSuccess.
  • After this event ng-Route will trying to load template related to that particular route and somehow going to inject in ng-View of our main view template.
  • Next step will be executing the controller or associate the scope with the respective scope of ng-View and raised event $routeChange Success.
  • After this it execute controller/associate scope as a part of this controller logic probabily  you have ajax operation which will be working with a web service in order to fetch data and once the data has scope variable and have scope ready then template element are bound to scope.

The above steps can have the pictorial representation as below:

answered Feb 10, 2020 by Niroj
• 82,880 points

Related Questions In Angular

0 votes
1 answer

Explain what is Angular Expression? Explain what is key difference between angular expressions and JavaScript expressions?

Like JavaScript,  Angular expressions are code snippets ...READ MORE

answered Feb 10, 2020 in Angular by Niroj
• 82,880 points
2,696 views
0 votes
1 answer

Which module is used for routing in AngularJs?

The ngRoute module helps your application to become a ...READ MORE

answered Feb 4, 2020 in Angular by Niroj
• 82,880 points
981 views
0 votes
1 answer

What is the difference between Call back transclusion function and no call back transclusion function?

Hey,    There is no difference between clone linking and ...READ MORE

answered Feb 5, 2020 in Angular by Niroj
• 82,880 points
469 views
0 votes
1 answer
+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,880 points

edited Jan 21, 2020 by Niroj 812 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,880 points

edited Jan 21, 2020 by Niroj 980 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,910 points
118,559 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,880 points

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

Explain routing workflow with resolve in AngularJs?

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

answered Feb 10, 2020 in Angular by anonymous
• 82,880 points
890 views
0 votes
1 answer

What is the difference between Routing using resolve and without using it?

There is not much difference between routing ...READ MORE

answered Feb 10, 2020 in Angular by anonymous
• 82,880 points
468 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