I am using resque for background tasks.
How can i show an animated spinner while a backgound task is processing?
I found a similar question, but it didn't help me

有帮助吗?

解决方案

When I've done this before, I've always set a flag on the object itself in the database once it enters Resque, then as soon as the job is done in the Resque task, updated that flag again. You can use AJAX to monitor the status of that flag and manipulate the page / spinner accordingly.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top