Re: [Rails] ActionController::DoubleRenderError -- how to redirect to different paths based on if else condition in rails??
what login_required method do here? I mean is this also redirecting to some other url ??
~Naren
On Wed, Dec 23, 2009 at 10:43 PM, Rup <rnarayan08@gmail.com> wrote:
def checkout
login_required
#if the user logged in has billing and shipping address on file,
show edit page else show new page.
@useraddress=UserAddress.find_by_user_id(current_user.id)
if @useraddress then #user's address exist
redirect_to edit_user_address_path(@useraddress.id) and return
else #user's address doesn't exist
redirect_to new_user_address_path and return
end
end
The above code is giving me DoubleRenderError. I want to go to
edit_user_address_path if the if condition is true else I want to go
to new_user_address_path to create one.
Can any one help me? I don't see any good documentation on this.
Thanks
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home