Currently, I am working with AngularJS 1.3
and my backend only supports HTTP requests (no WebSockets).
What would be the most effective solution for achieving "real-time" data updates? I am currently using $interval
to send an HTTP request every second, but I feel like there might be a better approach.
Any suggestions or recommendations are greatly appreciated!