Search code examples
angularjscurly-bracesng-controller

Curly braces not showing value in angular


Following Code is not showing or updating the value of nam in <p> tag. Kindly help !

<html ng-app>
<head></head>
<body>
<input ng-model = "nam.a" ng-controller = "myControl">
<p> Hello {{nam.a}}  </p>
<script>
function myControl($scope){
$scope.nam =  {
    a : "abcdefg"
};
};
</script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.25/angular.min.js"></script>
</body>
</html>

Solution

  • In your code there is no ng-app created, ng-controller is binded in wrong way also. This is the right implementation. Look at the example.

    <!DOCTYPE html>
    <html>
    <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
    
    <body>
    
        <div ng-app="myApp" ng-controller="myControl">
    
            <input ng-model="nam.a" >
            <p> Hello {{nam.a}} </p>
        </div>
    
        <script>
            var app = angular.module('myApp', []);
            app.controller('myControl', function ($scope) {
                $scope.nam = {
                    a: "abcdefg"
                };
            });
        </script>
    
    </body>
    
    </html>