$new() or $rootScope.new() in angularjs

Are AngularJs controllers singletons ?

AngularJs code-sample

var app = angular.module('singletonApp', []);

app.controller('singletonTest', function ($scope, singletonService) {
    $scope.name = singletonService.getValue();
});

app.service('singletonService', function () {
    var field = {
        value: 'hello Anil'
    };
    var getValue = function () {
        return val;
    }
    return {
        getValue: getValue
    };
});

HTML code

<div ng-app="singletonApp">
    <div ng-controller="singletonTest">
            <input type="text" ng-model="name.value" />
    </div>
</div>




ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

Are AngularJs controllers singletons ? Are AngularJs controllers singletons ? Reviewed by Anil Singh on 1:50 AM Rating: (5)
www.code-sample.com/. Powered by Blogger.
^