0% found this document useful (0 votes)
31 views

AngularJS - About MVC in Angular

The document discusses how Angular incorporates the Model-View-Controller (MVC) pattern into building client-side web applications. MVC separates applications into presentation, data, and logic components to encourage loose coupling and make applications better structured, easier to maintain, and more testable. Angular's use of MVC is explained through the model, controller, and view components.

Uploaded by

rikoton
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
31 views

AngularJS - About MVC in Angular

The document discusses how Angular incorporates the Model-View-Controller (MVC) pattern into building client-side web applications. MVC separates applications into presentation, data, and logic components to encourage loose coupling and make applications better structured, easier to maintain, and more testable. Angular's use of MVC is explained through the model, controller, and view components.

Uploaded by

rikoton
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Developer Guide / dev_guide / mvc While Model-View-Controller (MVC) has acquired different shades of meaning over the years

since it first appeared, Angular incorporates the basic principles behind the original MVC software design pattern into its way of building client-side web applications. The MVC pattern summarized: Separate applications into distinct presentation, data, and logic components Encourage loose coupling between these components Along with services and dependency injection, MVC makes angular applications better structured, easier to maintain and more testable. The following topics explain how angular incorporates the MVC pattern into the angular way of developing web applications: Understanding the Model Component Understanding the Controller Component Understanding the View Component

You might also like