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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T13:20:17+00:00 2026-06-12T13:20:17+00:00

I have a model Events and each event contains an array of ids for

  • 0

I have a model “Events” and each event contains an array of ids for “Genre” (a different model). When I create an event, I check a bunch of boxes and save the checked genres to the database. That is all working fine.

When I run my loop to display all events, the field genre_ids returns me an array with the id’s for each selected genre that needs to be retrieved from the genres table.

I tried suggestions that I found but had no success yet.

Genre model:

class Genre < ActiveRecord::Base
  has_and_belongs_to_many :events
end

Event model:

class Event < ActiveRecord::Base
  belongs_to :user
  has_many :genres
end

Events controller:

class EventsController < ApplicationController

  def index
    @event_all = Event.all
  end

 def get_genres(event_id)
   @event_genre = Event.find(event_id).genre_id
 end
 helper_method :get_genres

end

 -------

And finally the loop:

<div id="index-events-wrap">
   <% @event_all.each do |ea| %>
     <div class="item">
     <div class="event-image">
       image here
     </div>
    <ul>
      <li><%= ea.name %></li>
      <li><%= get_genres(ea.id)  %></li>
      <li><%= ea.venue_name %></li>
      <li><%= ea.venue_address %></li>
      <li><%= ea.venue_postcode %></li>
    </ul>
  </div>
<% end %>
</div>
  • 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-12T13:20:18+00:00Added an answer on June 12, 2026 at 1:20 pm

    Try with:

    @event_all = Event.includes(:genres).all
    

    It will make one more query (to avoid multiple instantiation of the Genre instances) and populate all the associations automatically. So in the view you can:

    <li><%= ea.genres %></li>
    

    By the way, you should have has_and_belongs_to_many in both classes, otherwise Rails won’t understand it.

    class Event < ActiveRecord::Base
      belongs_to :user
      has_and_belongs_to_many :genres # <- this one
    end
    

    If needed, add a migration for the join table, see Do I need to manually create a migration for a HABTM join table?

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

Sidebar

Related Questions

so I'm working on a django application where I have a model Event. Each
The site is about special discount events. Each event contains a period of time
I have a model of events that has various information such as date, location,
I have a model called Event and another called Product. An event has many
I have model: [XmlRoot(ElementName = event, IsNullable=true)] public class Event { public int id
Does jquery/javascript have any event model that you can attach to your objects? Basically
I have a parent entity in my model Event. And two child entities: Birthday,
I have a model that looks like this: Performance - Location - Event -
I have a model that looks like this: class Invite(models.Model): user = models.ForeignKey(User) event
I have this model var Item = Backbone.Model.extend({ url: 'http://localhost/InterprisePOS/Product/loaditembycategory/Event Materials' }); var onSuccess

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.