HTTP request / response

I am sending a GET request from AngularJS and I am getting correct output, but when I inspect Firebug I can see that the Response Header is coming from Catch. What is causing this?

Enter image description here

+3


source to share


1 answer


A simple solution to this problem is to add a unique parameter to the url. Like this:



$http({
   url: 'http://...',
   params: { 'something': new Date().getTime() }
});

      

0


source







All Articles