Get data from scope

Description

The following code shows how to Get data from scope.

Example


<!DOCTYPE html>
<html ng-app>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.13/angular.js"></script>
</head><!--from   w w w.j  a v  a 2 s .c  om-->

<body ng-app="myApp">
  <div ng-controller="MyCtrl">
  Hello, {{myName}}!
  </div>
<script type='text/javascript'>
    var myApp = angular.module('myApp',[]);
    function MyCtrl($scope) {
        $scope.myName = 'Hi';
    }
</script>
</body>
</html>

Click to view the demo





















Home »
  AngularJS »
    AngularJS Example »




Controller
Directives
Expression
Filter
Form
Inject
Scope
Server
Style
Template
Utilities