Configure phase of angularJS

后端 未结 1 1967
醉酒成梦
醉酒成梦 2021-02-14 20:31

\"AngularJS

What is going on in the configure phase of bootstrapping angular app. Unable to ima

1条回答
  •  时光说笑
    2021-02-14 20:55

    An angular application uses services ($http, $location, etc.).

    It's sometimes necessary to configure these services before using them. For example, the $location service has two modes of execution: the "normal" mode, and the "html5" mode. $http might need some headers configured before even sending its very first HTTP request.

    To configure these services, Angular uses providers. Providers are objects whose role is to accept configuration options during the configuration phase, and then, once everything is set up, to create the unique instance of a service.

    So, to configure the $location service, you use its $locationProvider during the configuration phase. Once that phase is done, Angular, during the run phase, will call the provider's $get() method, which will create and return the $location service (hence the name "provider").

    0 讨论(0)
提交回复
热议问题