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

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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T15:43:07+00:00 2026-05-17T15:43:07+00:00

So basically I have two models, Entry and Comment. I have the association setup

  • 0

So basically I have two models, Entry and Comment.
I have the association setup so that Entry has many Comments:

class Entry < ActiveRecord::Base
has_many :comments
end

And a comment belongs to an entry:

class Comment < ActiveRecord::Base
belongs_to :entry
end

In my database schema I have setup the comments table with a column called entry_id.
To my knowledge, this is all I needed to do to setup an association. However when I save a comment, it does not save the entry_id into the database.

I can confirm that the entry_id is being passed in the form. Here is a dump of the params variable being sent to the controller.

{"comment"=>{"comment"=>"ghgghgh"},
"commit"=>"Create Comment",
"format"=>"",
"entry_id"=>"1",
"authenticity_token"=>"G4uH8smdA2eeKeTXbD9NbenKH4AbWLyJuPWQzRcn6CI=",
"utf8"=>"✓"}

Any Ideas?

EDIT:
This is my view with the comment form built in:

<% @entry.each do |e| %>
<div class="entry">
<p><%= e.entry %></p>
<small>Posted by <%= e.author %> at <%= e.created_at.strftime("%I:%M%p %m/%d/%Y") %></small>
<% if e.comments.nil? %>
    <p>No Comments</p>
<% else %>
    <% e.comments.each do |c| %>
    <blockquote><%= c.comment %></blockquote>
    <% end %>
<% end %>
<%= form_for @comment, :url => entry_comments_path(e, @comment) do |f| %>
<%= f.label :comment %>
<%= f.text_area :comment %>
<%= f.submit %>
<% end %>
</div>
<hr />
<% end %>
<%= button_to "Write A Message", new_entry_path, :method => :get %>

I have commments as a nested route:

  resources :entries do
resources :comments
  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-05-17T15:43:07+00:00Added an answer on May 17, 2026 at 3:43 pm

    The entry_id is not in your comment in your params. You need have :

     {"comment"=>{"comment"=>"ghgghgh", "entry_id"=>"1"},
    "commit"=>"Create Comment",
    "format"=>"",
    "authenticity_token"=>"G4uH8smdA2eeKeTXbD9NbenKH4AbWLyJuPWQzRcn6CI=",
    "utf8"=>"✓"}
    

    In your form, you entry_id need to be in comment part. comment[entry_id]

    If you want more information, we need your view.

    You have two choice

    1) add the entry_id in your form

    <%= form_for @comment, :url => entry_comments_path(e, @comment) do |f| %>
    <%= f.label :comment %>
    <%= f.text_area :comment %>
    <%= f.hidden_field :entry_id, e.id
    <%= f.submit %>
    

    2) add it in your create action

    def create
      Comment.create(params[:comment].merge(:entry_id => params[:entry_id])
    end
    

    You have this problem because you nested your form.

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

Sidebar

Related Questions

Basically you have two ways for doing this: for (int x = 0; x
I have basically two separate sites, a SharePoint collaboration site, and an ASP.Net application
I basically created some tables to play around with: I have Two main tables,
I basically have a page which shows a processing screen which has been flushed
Basically I have the following class: class StateMachine { ... StateMethod stateA(); StateMethod stateB();
I basically have the following flow: XML -> JSON -> Spring MVC -> jsp
I am looking in to ways to enable a site to basically have something
I would like to do the following. Basically have a stored procedure call another
Basically I have some code to check a specific directory to see if an
Basically I have a bunch of unmanaged VC++ static libraries. And the VC++ GUI

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.