खोज…


नियंत्रक

यदि आपका ऑब्जेक्ट ओरिएंटेड प्रोग्रामिंग से परिचित है, तो ES6 के साथ कोणीयजेएस नियंत्रक लिखना बहुत आसान है:

 class exampleContoller{
      
        constructor(service1,service2,...serviceN){
           let ctrl=this;
               ctrl.service1=service1;
               ctrl.service2=service2;
                .
                .
                .
               ctrl.service1=service1;
               ctrl.controllerName = 'Example Controller';
               ctrl.method1(controllerName)

        }

        method1(param){
           let ctrl=this;
                ctrl.service1.serviceFunction();
               .
               .
               ctrl.scopeName=param;
        }
        .
        .
        .
        methodN(param){
           let ctrl=this;
                ctrl.service1.serviceFunction();
               .
               .
        }

    
    } 
    exampleContoller.$inject = ['service1','service2',...,'serviceN'];
    export default exampleContoller;


Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow