Home > Software design >  My django project keeps blinking and loading
My django project keeps blinking and loading

Time:04-26

my project was working before but now that cleaned my cache it keeps blinking. It keeps loading with no end in sight. The table in my project appears and disappears again and again blinking. The navbar and thead are fine but my tbody keeps doing it. Does anyone know how to fix this?

CodePudding user response:

I found the answer. I had location.reload(true) in my script that is why it was happening.

CodePudding user response:

This must be a problem with your IDE. If you are using Pycharm, try clearing your cache by going to File > Invalidate Caches.

If that fails, uninstall your IDE and re-install it again.

  • Related