Answers

Question and Answer:

  Home  AngularJS Developer

⟩ Tell me the Steps Involved In The Boot Process For AngularJS?

Whenever a web page loads in the browser, following steps execute in the background.

☛ First, the HTML file containing the code gets loaded into the browser. After that, the JavaScript file mentioned in the HTML code gets loaded. It then creates a global object for angular. Now, the JavaScript which displays the controller functions gets executed.

☛ In this step, AngularJS browses the complete HTML code to locate the views. If a view is found, it is linked it to the corresponding controller function.

☛ In this step, AngularJS initiates the execution of required controller functions. Next, it populates the views with data from the model identified by the controller. With this the page is ready.

 169 views

More Questions for you: