Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have two classes (Impressions and Replies) which inherit from the parent class Comment:

class CommentsController < ApplicationController
  . . . .
end

class ImpressionsController < CommentsController
  . . . .
end

class RepliesController < CommentsController
  . . . .
end

In my view, I want them to render the same way. Right now, I'm approaching it like this:

<%= render @comment %>

Ideally, this would render the partial "/comments/_comment", but instead Rails want to render things like "/impressions/_impression" or "/replies/_replies." Is there any way to strong arm Rails into do "/comments/_comment"?

share|improve this question
you have three different types, Impressions, Replies and Comments and you want to render them all as if they were the base class Comment? – John Naegle Nov 29 '12 at 3:30
Yep. Impressions and Replies are basically the same thing, though there are significant differences in the way their respective models handle them. The distinction is important on the back end, but on the front end, they can be treated the same way. – timothythehuman Nov 29 '12 at 3:36
Maybe you could force the subclasses to the base: render @comment.becomes(Comment) – John Naegle Nov 29 '12 at 3:37

1 Answer

up vote 1 down vote accepted

I think smth like this can help:

<%= render :partial => '/comments/comment', :collection => @impressions,
           :as => :comment %>
share|improve this answer
Good to know about :as. I've been toying with this approach, though, and so far I haven't had any luck. The render turns out blank every time. I'll keep you posted if I figure anything out. – timothythehuman Nov 29 '12 at 4:12
I just don't get it. According to my console, rails is definitely rendering '/comments/comment,' but it always turns up blank, even if the partial is full of static text. This led me to think that '@impressions' is being treated as null, but if I do something like '@impressions.first.title' immediately before rendering the partial, I get non-null results. Any other ideas about what could be going wrong? – timothythehuman Nov 29 '12 at 4:42
Got it working. There are instances where I'm passing a single variable, such as '@impression' rather than '@impressions.' If I put it into an array like '[@impression]' then everything works well. – timothythehuman Nov 29 '12 at 17:31
My congratulations to you! – zolter Nov 29 '12 at 17:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.