Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6968421
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T16:26:58+00:00 2026-05-27T16:26:58+00:00

For example, I have something like this in my controller: def save … render

  • 0

For example, I have something like this in my controller:

def save
  ...
  render 'error' if user.nil?
  @cast = user.cast
  render 'cast'
end

I have nil: no method error here (in user.cast). But if I use redirect_to instead of render, everything works perfectly.

It seems like Rails doesn’t stop their executive stack after render, but stops after redirect_to. Doesn’t it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T16:26:59+00:00Added an answer on May 27, 2026 at 4:26 pm

    Your assumption is correct. redirect_to sends an HTTP 302 redirect message to the user’s browser, telling it to go to a different URL, thus stopping your current execution.

    I’d reccommend checking out this post: http://blog.markusproject.org/?p=3313

    He gives a great summary of how to use each:

    render will render a particular view using the instance variables
    available in the action. For example if a render was used for the new
    action, when a user goes to /new, the new action in the controller is
    called, instance variables are created and then passed to the new
    view. Rails creates the html for that view and returns it back to the
    user’s browser. This is what you would consider a normal page load.

    redirect_to will send a redirect to the user’s browser telling it to
    re-request a new URL. Then the browser will send a new request to that
    URL and it will go through the action for that URL, oblivious to the
    fact that it was redirected to. None of the variables created in the
    action that caused the redirect will be available to the redirected
    view. This is what happens when you click on ‘Create’ in a form and
    the object is created and you’re redirected to the edit view for that
    object.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So basically I have a controller. something like this def show @user = User.find[:params[id]]
I have a controller like this : def mytask = { def user =
For example can i have something like this: public static void SAMENAME (sameparameter n)
For example, I have a struct which is something like this: struct Test {
Currently, I have URLs that look like this: http://www.example.com/user/create http://www.example.com/user/edit/1 But now, I have
I used to have my permalinks to standard format, something like http://example.com/?page_id=2 . Now
I have URL like: http://example.com#something , how do I remove #something , without causing
I have some URLs, like http://www.example.com/something?param1=value1&param2=value2&param3=value3 and I would like to extract the parameters
In my interface I have a list of text boxes, something like this :
Does anybody have any example code on how this would work? Seems like it

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.