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 8858227
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T14:46:49+00:00 2026-06-14T14:46:49+00:00

Probably a silly question, so I apologize in advance for this: I have an

  • 0

Probably a silly question, so I apologize in advance for this:

I have an Item Controller whose index action I’m using to show all items (duh). Now, I want to filter the items that are shown (here, just ones that have ‘shoes’ in their titles).

Unfortunately, I am not able to define the @item = Item.find(params[:id]) statement under the index action.

I am getting the dreaded ActiveRecord::RecordNotFound in ItemsController#index —- Couldn’t find Item without an ID error.

Any ideas?

Items Controller

def index
     @item = Item.find(params[:id])
     @items = Item.where(@item.title =~ /shoes/i).paginate(:page => params[:page], :per_page => 30)

    respond_to do |format|
      format.html # index.html.erb
      format.json { render json: @items }
    end
  end
  • 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-14T14:46:50+00:00Added an answer on June 14, 2026 at 2:46 pm

    This is actually what you want. What you tried makes no sense.

      def index
         @items = Item.where("title ILIKE '%shoes%'").paginate(:page => params[:page], :per_page => 30)
    
        respond_to do |format|
          format.html # index.html.erb
          format.json { render json: @items }
        end
      end
    

    Edit:

    In a way to be compatible with all the supported DBs it seems you can do something like this instead

    item=Item.arel_table
    Item.where(item[:title].matches('%shoes%'))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This is probably a silly question, but here it goes.Imagine you have the following
This is probably a silly question but I have been thinking it over for
This is probably a silly question. Let's say I have 20 event handlers that
Probably a silly question, but I'm new to all this. I am creating a
This is probably a silly question, but i could't figure it out. I have
I started using Java a while ago so this is probably a silly question
Probably a silly question here but I have been trying to find this for
This is probably a silly question, but I have looked and haven't found a
This is probably a very silly question. I am trying to do a geolocation
This is probably a really silly question bu tI can't seem to find an

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.