redirect先でredirect元の変数を参照
redirect_to先のviewで、redirect_to元のデータで何の処理を行ったか目視したいので
簡単に内容を表示させたいのですが
リダイレクト元のコントローラの変数を、リダイレクト先のviewに渡すにはどうしたらいいのでしょうか。
--api_controller.rb
class ApiController < ApplicationController
def foo
arr = [1,2,3,4]
#arrをいろいろと処理
redirect_to :controller => "top", :action => "bar"
end
end
--top_controller.rb
class topController < ApplicationController
def bar
#ここで@arr = arrしたい
end
end
top/bar.html.erbもしくはbarコントローラでarrを受け取ることは可能ですか?
お礼
ありがとうございます、 print "Location: xxxx/xxxxx.cgi?xxx=xxx&xxx=xxx\n\n"; ということですか?