I am new to AngularJS. I am trying to make a request to a web service. I would like to implement a progress bar that tells me what percentage of this request. Maybe someone has a basic example that can help me. Really appreciate it if anyone can give me a hand with this. I will try to explain a little more. I have such a request. I want you to show me the percentage from start to finish. I am a beginner, so I would like to find something simple but functional.
$http({ method: 'GET', url: "www.examplejson.com/example", timeout:5000 }).success(function(data){ console.log("complete!"); }).error(function(response,status,headers,config) { console.log("error"); });
source share