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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T01:25:58+00:00 2026-05-14T01:25:58+00:00

How would I show one of many nested objects in the index view class

  • 0

How would I show one of many nested objects in the index view

class Album < ActiveRecord::Base 

has_many: photos
accepts_nested_attributes_for :photos,
 :reject_if => proc { |a| a.all? { |k, v| v.blank?} }


has_one: cover
accepts_nested_attributes_for :cover


end

class Album Controller < ApplicationController
  layout "mini"
  def index
    @albums = Album.find(:all,
    :include => [:cover,]).reverse

    respond_to do |format|
      format.html # index.html.erb
      format.xml  { render :xml => @albums }
    end
  end

This is what I have so fare. I just want to show a cover for each album.

Any info on this would be a massive help!!

  • 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-14T01:25:59+00:00Added an answer on May 14, 2026 at 1:25 am

    In your view iterate over the nested data. i.e.

    <% @albums.each do |album| %>
    
      <%= album.name %>
      <% # display other album details %>
    
      <%= image_tag album.cover.name %>
    
      <% album.photos.each do |photo| %>
        <%= image_tag photo.name %>
      <% end %>
    <% end %>
    

    In your controller include the photos in the query results.

    @albums = Album.all :include => [:photos]
    

    You don’t need to include the :cover in the query as it is a has_one association(unless you are using the fields from :cover in your WHERE condition).

    I suspect you are making the reverse call to sort the result-set. Use the :order clause instead.

    @albums = Album.all :include => [:photos], :order => "created_at ASC"
    

    OR

    @albums = Album.all :include => [:photos], :order => "name ASC"
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to show some hidden text in a Flex application and have
I would like to show some links only to authenticated users in an asp.net
I would like to show a set of consecutive numbers in a UIPickerView component
I would like to show an XML file in my .NET 2.0 WinForms app
I have a series of performance tests I would like to show as a
I'm using blogengine.net. I would like to show a default image in the H1
Would it be possible to show an image in full screen mode using silverlight.
Could someone show me a regular expression that would look through this document and
When using CDT I would like to have std::string show up in the 'variable'
What are some reasons why PHP would force errors to show, no matter what

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.