Angular MVC
In AngularJS the MVC pattern is implemented in JavaScript and HTML. The view is defined in HTML, while the model and controller are implemented in JavaScript. There are several ways that these components can be put together in AngularJS but the simplest form starts with the view.
The Static View with controller
Section titled “The Static View with controller”mvc demo
Section titled “mvc demo”Controller Function Definition
Section titled “Controller Function Definition”var indexController = myApp.controller("indexController", function ($scope) { // Application logic goes here});Adding information to the model
Section titled “Adding information to the model”var indexController = myApp.controller("indexController", function ($scope) { // controller logic goes here $scope.message = "Hello Hacking World"});