Ruby on Rails Tuesday, February 26, 2013

Hi.
You can fixed this issue by next way:

Controller:
def update_subject
    session[:subject] = params[:subject_title]
    render action: 'ANY_STUB_PAGE' and return
end

This action updates session value at cookies in client side. Stub page will not be visible, because incoming data will not be rendered on the screen, only in the backend.

--
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-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/0ClOu0k3tNAJ.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

No comments:

Post a Comment