passing params to controller redirects

瀏覽次數:10 次
跳到第一則未讀訊息

fugee ohu

未讀,
2017年6月5日 晚上11:53:132017/6/5
收件者:Ruby on Rails: Talk
my index action is looking for params[:club][:genre_id]
after a club is successfully added or updated i wanna pass those (nested) params back to my index action so my filter will be set to the right genre_id but clubs_path(:genre_id => @genre_id) after setting @genre_id = params[:club][:genre_id] doesn't work the index page loads without a genre_id set

Jason Fleetwood-Boldt

未讀,
2017年6月6日 中午12:45:422017/6/6
收件者:rubyonra...@googlegroups.com
Did you try it without specifying the params?

Last I checked if you define a redirect(…) in your routes.rb file, the query params are automatically passed along to the redirected page. 

(*I'm on an older version of Rails, so if this changed in Rails recently then ask someone who has experience with more recent versions of Rails)


If that doesn't work maybe try

  get '/xyz', to: redirect {|path_params, req| "/abc#{'?' if req.params.any?}" + req.params.to_query}





On Jun 5, 2017, at 11:53 PM, fugee ohu <fuge...@gmail.com> wrote:

my index action is looking for params[:club][:genre_id]
after a club is successfully added or updated i wanna pass those (nested) params back to my index action so my filter will be set to the right genre_id but clubs_path(:genre_id => @genre_id) after setting @genre_id = params[:club][:genre_id] doesn't work the index page loads without a genre_id set

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-ta...@googlegroups.com.
To post to this group, send email to rubyonra...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/8dc82eee-1301-4fbc-818b-2bd57984c8dc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

If you'd like to reply by encrypted email you can find my public key on jasonfleetwoodboldt.com (more about setting GPG: https://gpgtools.org

回覆所有人
回覆作者
轉寄
0 則新訊息