我开发有文章和新闻页面的网站,我想增加评论两者的机会。我使用多态关联。
class Article < ActiveRecord::Base
has_many :commentaries, :as => :commentable
end
class News < ActiveRecord::Base
has_many :commentaries, :as => :commentable
end
class Commentary < ActiveRecord::Base
belongs_to :commentable, :polymorphic => true
end
我想在可评论对象下面显示评论
视图/物品/ show.html.erb
<p>
<b>Title:</b>
<%= @article.title %>
</p>
<p>
<b>Short text:</b>
<%= @article.short_text %>
</p>
<p>
<b>Full text:</b>
<%= @article.full_text %>
</p>
<%= render 'commentaries/form' %>
视图/消息/ show.html.erb
<p>
<b>Title:</b>
<%= @news.title %>
</p>
<p>
<b>Text:</b>
<%= @news.text %>
</p>
<p>
<b>Created:</b>
<%= @news.created %>
</p>
视图/评论/ _form.html.erb
<h1>Comments</h1>
<ul id="comments">
<% @commentaries.each do |comment| %>
<li><%= comment.content %></li>
<% end %>
</ul>
<h2>New Comment</h2>
<% form_for [@commentable, Comment.new] do |form| %>
<ol class="formList">
<li>
<%= form.label :content %>
<%= form.text_area :content, :rows => 5 %>
</li>
<li><%= submit_tag "Add comment" %></li>
</ol>
<% end %>
我的控制员:
class CommentariesController < ApplicationController
def index
@commentable = find_commentable
@commentaries = @commentable.commentaries
end
end
class ArticlesController < ApplicationController
def show
@article = Article.find(params[:id])
end
end
当我转到mysite / article / 1时,我得到错误未定义的方法`each'为nil:NilClass,因为我的文章控制器中没有@commentable而且注释控制器的代码没有执行。
如何在文章/节目页面上执行评论控制器的索引操作?
答案 0 :(得分:3)
添加局部变量:commentable => @article
,同时呈现评论表格
<%= render 'commentaries/form', :commentable => @article %>
从部分视图views/commentaries/_form.html.erb
<% commentable.commentaries.each do |comment| %>
...
<% end %>
...
<% form_for [commentable, Comment.new] do |form| %>
...
<% end %>