In my JS App, i have many Ajax calls with async: false
. I am using latest Chrome browser and in my console below warning appears recently.
Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check http://xhr.spec.whatwg.org/.
Now i am trying to change all async: false
to async: true
. But it causes a lot of error because my app needs to run with async: false
.
Is the warning just a bug or something? Can i worry about that or ignore that?
See Question&Answers more detail:os