Angularjs Learning: Dependency Injection

Source: Internet
Author: User
1. Angularjs uses $injetor(injector service) to manage queries and instantiations of dependencies. In fact, $injetor is responsible for instantiating all of the components in the ANGULARJS, including the application's modules, instructions, and controllers. At run time, when any module starts, $injetor is responsible for instantiating and passing all the dependencies it needs.

Dependency injection in a way that is passed through parameters where needed.

Internally, the ANGULARJS process is as follows://Use the injector to load the application var injector = Angular.injector ([' ng ', ' myApp ']);//load the $controller service via the injector: VAR $ Controller = injector.get (' $controller '); var scope = Injector.get (' $rootScope '). $new ();//load controller and pass in a scope, Same as Angularjs at run time var mycontroller = $controller (' Mycontroller ', {$scope: scope})





Angularjs Learning: Dependency Injection

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.