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

  • SEARCH
  • Home
  • 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 8949475
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T13:13:35+00:00 2026-06-15T13:13:35+00:00

I am just looking to seek some clarification to accessing Instance variables within its

  • 0

I am just looking to seek some clarification to accessing Instance variables within its class (apologies if this is really basic).

My example is that I have a recipe controller and within it I have many actions but in paticular I have an INDEX and a SHOW action

def index
@q = Recipe.search(params[:q])
@q.build_condition
end

@q searches my Recipe model based on the params passed through my search form

i want to show the results on a different page to start (will look at AJAX option later), so in my SHOW action could I do this

 def show
 @searchresults = @q.result(:distinct => true)
 end

I think this is valid but if not I am going wrong somewhere. Can anyone advise or offer some constructive advice?

Thank you

  • 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-06-15T13:13:36+00:00Added an answer on June 15, 2026 at 1:13 pm

    No you can’t use instance variable like this because they both have different action and will get called for the different request.

    However following will work

    def index
      @q = Recipe.search(params[:q])
      @q.build_condition
      show
    end
    
    def show
      #Following line will work as we are calling this method in index 
      #and so we can use instance variable of index method in the show methos 
      @searchresults = @q.result(:distinct => true)
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Just looking for some clarification, as I am still new to all of this:
I just looking how to use LINQ for grouping a list. Class Item Public
I was just looking at this example from Deitel : #include <stdio.h> struct card
I'm just looking for suggestions on the best way to do this... I need
I was just looking at this code and i don't understand what RETURN TRUE
Just looking for some advice on the best to approach a profile picture system
Just looking for some advice regarding a structure that I am using in some
Just looking for some pointer before I head down the wrong path. I have
Just looking for how to programmatically add a watermark or some sort of overlay
just looking for some general direction/best practice about when to use a lookup value

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.