時間がかかるアクションがあります。ユーザーが接続を失ったか何かについて混乱しないように、プロセス中に更新を提供できるようにしたいと思います。私はこのようなことをすることができますか?
class HeavyLiftingController < ApplicationController
def data_mine
render_update :js=>"alert('Just starting!')"
# do some complicated find etc.
render_update :js=>"alert('Found the records!')"
# do some processing ...
render_update :js=>"alert('Done processig')"
# send @results to view
end
end