.config, .run, AppCtrl - where to put routes?

痞子三分冷 提交于 2019-12-20 09:55:23

问题


I wanted to find out the difference between the .config and .run functions in AngularJS. I was using my .config for setting up routes, but I did have some $on's for watching route change start and success events.

I then moved some of this code to .run as I was having some dependency injection problems in .config.

I finally moved some of this to a CommonAppController which I have set on my <body>.

I also had 2 .config's and it seemed to be running ok, but surely this isn't right?

Can anyone give a little insight on which method to use?


回答1:


Configuration blocks and run blocks get executed at different points in the application bootstrap, and have different injection locals at their disposal. Here's a summary of what you can find in the AngularJS documentation.

Configuration blocks (registered with module.config()) get executed during provider registration, and can only be injected providers and constants (see module.provider() and module.constant()). This is typically where you would configure application-wide stuff, such as the $routeProvider. Stuff that needs to be configured before the services are created.

Run blocks (registered with module.run()) get executed after the injector has all the providers. Now, all instances and constants can be injected. This is typically where you would configure services, $rootScope, events and so on.

You can have multiple of either, and they are executed in the order they were registered to the module. Some people prefer to register a configuration block before every group of controllers to register the routes to these controller, for example.




回答2:


The .config block is executed during the provider registration and configuration phase. It' a module level block.

The.run block is executed after the config block. It's used to inject services and constants.



来源:https://stackoverflow.com/questions/18123565/config-run-appctrl-where-to-put-routes

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!