I have one page where I need to load multiple nodes from the Firebase Real-Time Database. The structure is as follows:
/overview/$date/list
/overview/$date/alerts
/overview/$date/other
What is more efficient when using AngularJS 1.x:
- load
overview/$date
once - or creating multiple functions and loading per node:
- load
/overview/$date/list
- load
/overview/$date/alerts
- load
/overview/$date/other
- load