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

The Archive Base Latest Questions

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

I’m new to ruby/rails and trying to build a simple Projects / Tags app

  • 0

I’m new to ruby/rails and trying to build a simple Projects / Tags app where Projects and Tags are associated as has_and_belongs_to_many to each other. It’s basically a simple list of projects that have tags associated, and those tags in turn can be re-used by multiple projects.

I’ve been loading tags into projects like this:

my_project = Project.create(:name => "My Project")
my_tag = Tag.create(:content => "My Tag")
my_project.tags << my_tag

All appears well until I try to load the info into my View. I have a list of projects, each with a small table below that lists the associated tags:

<table>
 <% @projects.each do |project| %>
   <table>
     <tr>
       <td width="300"><%= project.name %></td>
       <td width="100"><%= link_to 'Edit project', edit_project_path(project) %></td>
       <td width="100"><%= link_to 'Nuke project', project, :confirm => 'Are you sure?', :method => :delete %></td>
     </tr>
   </table>
   <table>
     <tr>
       <td><%= project.tags %></td>
     </tr>
   </table>
 <% end %>
</table>

The View output I get is:

[1] My Project               Edit Project      Nuke Project
[2] [#<Tag id: 1, content: "My Tag", created_at: "2012-03-27 19:27:26", updated_at: "2012-03-27 19:27:26">, #<Tag id: 2, content: "My Other Tag", created_at: "2012-03-27 19:41:04", updated_at: "2012-03-27 19:41:04">]

In line [2] How do I go about only displaying the values of :content and not the entire hash? Also – is this how I should associate tags with projects?

Would be great if anyone could point me in the right direction. Much appreciated!!

Thanks!
Jason

  • 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-31T22:25:15+00:00Added an answer on May 31, 2026 at 10:25 pm

    Well project.tags will return an array, so you need to loop over each item and display it. For example try:

    project.tags.map {|tag| tag.content}.to_sentence
    

    Map loops through each tag, and we’re displaying the content of each tag, finaly outputting it to a sentence.

    There are numerous other ways to do that. Have a look at the array methods for more info.

    About the other question, has_and_belongs_to_many is fine, but for more flexibility try using has_many :through, as explained here. And here is the reasoning behind that.

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

Sidebar

Related Questions

We're building an app, our first using Rails 3, and we're having to build
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have just tried to save a simple *.rtf file with some websites and
I am trying to understand how to use SyndicationItem to display feed which is
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I want use html5's new tag to play a wav file (currently only supported
I am doing a simple coin flipping experiment for class that involves flipping a
I am trying to render a haml file in a javascript response like so:
Seemingly simple, but I cannot find anything relevant on the web. What is the

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.