ocLazyLoad icon indicating copy to clipboard operation
ocLazyLoad copied to clipboard

Best way to lazy load a service used in multiple controllers using ocLazyLoad?

Open FarhanAbdulQayyum opened this issue 7 years ago • 1 comments

I can lazy load a controller file in routing. So that controller file is loaded when its needed. but I want to know what is the best way to lazy load service file which is being used in multiple controllers?

As loading a single service file in resolves of multiple states will cause lots repetition of code.

Like this I have many common services which are needed in many places and loading all of them in index file will make system loading slow at first.

FarhanAbdulQayyum avatar Oct 05 '17 06:10 FarhanAbdulQayyum

Perhaps you could bundle the service names array to be returned in a couple functions and then use that in the resolve to reduce the duplication so if a service names changes or whatever you can just change it in the function instead of all the routes?

piller187 avatar Oct 18 '17 17:10 piller187