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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T16:43:48+00:00 2026-05-24T16:43:48+00:00

class CommentsController < ApplicationController def create @contact = Contact.find(params[:contact_id]) @comment = @contact.comments.create(params[:comment]) respond_to do

  • 0
class CommentsController < ApplicationController
  def create
    @contact = Contact.find(params[:contact_id])
    @comment = @contact.comments.create(params[:comment])
    respond_to do |format|
      format.html { redirect_to contact_path(@contact) }
      format.js
    end
  end
  def destroy
    @contact = Contact.find(params[:contact_id])
    @comment = @contact.comments.find(params[:id])
    @comment.destroy
    respond_to do |format|
       format.html { redirect_to contact_path(@contact) }
       format.js
     end
  end
end

Is it possible to also create and destroy comments for the company model? How do you check whether a user is on a certain page? Because then I can just have an if statement.

The changed CommentsController

class CommentsController < ApplicationController
  def create
    @object = find_object
    @comment = @object.comments.create(params[:comment])
      respond_to do |format|
        format.html { redirect_to [@object] }
        format.js
      end
  end

  def destroy
    @object = find_object
    @comment = object.comments.find(params[:id])
    @comment.destroy
    respond_to do |format|
       format.html { redirect_to [@object] }
       format.js
     end
  end

  private
  def object
    @object = if params[:contact_id]
      Contact.find(params[:contact_id]
    elsif params[:company_id]
      Company.find(params[:company_id])
    end
  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-05-24T16:43:48+00:00Added an answer on May 24, 2026 at 4:43 pm

    you can do it with routing

    # routes.rb
    resources :contacts do
      resources :comments
    end
    resources :company do
      resources :comments
    end
    

    So in controller you can handle if there any company or contact around:

    def destroy
      @object = find_object
      @comment = @object.comments.find(params[:id])
      @comment.destroy
      redirect_to [@object]
    end
    
    private
    def find_object
      @object = if params[:contact_id]
        Contact.find(params[:contact_id])
      elsif params[:company_id]
        Company.find(params[:company_id])
      end
    end
    

    But best solution here is to use POLYMORPHISM here. Check out:

    http://railscasts.com/episodes/154-polymorphic-association

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

Sidebar

Related Questions

I have a class CommentsController < ApplicationController def foo session[:comments] ||= {} comment =
class Ball: a = [] def __init__(self): pass def add(self,thing): self.a.append(thing) def size(self): print
class ClassName(object): def __init__(self, foo, bar): self.foo = foo # read-write property self.bar =
url: /contents/view/chapter:models/section:associations class ContentsController extends AppController { function view() { $this->params['named']; } } For
I have the following models with associations as given below:- class Comment < ActiveRecord::Base
I'm trying to create a way to have users comment on my posts. Currently
class mydialog declaration. ........................... my work is to create a window with a button
class Connection { public: typedef boost::shared_ptr<Connection> pointer; static pointer create(boost::asio::io_service& io_service){return pointer(new Connection(io_service));} explicit
I have a simple Comment model and controller. When I create a comment in
class Foo { static bool Bar(Stream^ stream); }; class FooWrapper { bool Bar(LPCWSTR szUnicodeString)

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.