Damaged interceptor detected - angular loading bar

When I use IE9, I get this error:

"A detected failed interceptor was detected: configuration object not included in the failure: https://github.com/chieffancypants/angular-loading-bar/pull/50 "

The whole page just got stuck on loading. This only happens on IE9 and below.

Thanks!

+9
source share
2 answers

I am using https://github.com/chieffancypants/angular-loading-bar repo in the project. This error means that some of your queries return a 5XX error. check the console in your browser and add additional information to the question.

0
source
  1. Make sure that the correct JSON is returned from the API, this type of error usually occurs when the returned data from the API is not valid JSON.
  2. Along with a successful callback, remember to also use error callbacks, regardless of whether you are 200% sure that you will not get any errors, error callbacks help in identifying the error accurately.
0
source

All Articles