Angular MVC

Other topics

The Static View with controller

mvc demo

Hello World

Controller Function Definition

var indexController = myApp.controller("indexController", function ($scope) {
    // Application logic goes here
});

Adding information to the model

var indexController = myApp.controller("indexController", function ($scope) {
    // controller logic goes here
    $scope.message = "Hello Hacking World"
});

Contributors

Topic Id: 8667

Example Ids: 27040,27041,27042

This site is not affiliated with any of the contributors.