晚上好,
过去几个小时,我坐在这里摸不着头脑。
我有一个非常简单的评论模型附加到文章模型。问题是,每篇文章评论部分的末尾似乎都有一个空白的评论。如果我尝试使用像“大写nil类”那样大写错误的方法,如果我将评论放在每个评论(Facebook样式)的灰色背景的div中,文章末尾会出现一个空白框评论。有谁知道发生了什么?
无论如何是代码: 评论控制器
def create
@article = Article.find(params[:article_id])
@comment = @article.comments.create(params[:comment])
if @comment.save
flash[:success] = "Comment created"
redirect_to @article
else
flash[:error] = "Something went wrong"
redirect_to @article
end
end
def destroy
@article = Article.find(params[:article_id])
@comment = @article.comments.find(params[:id])
@comment.destroy
redirect_to @article
end
end
评论模型
attr_accessible :name, :content
belongs_to :article
validates_presence_of :article_id
validates_presence_of :content, length: { maximum: 300 }
default_scope order: "comments.created_at DESC"
评论表
<a href='#', id='comments-form', class="btn btn-large">Add a comment</a>
<div id="comment">
<%= form_for([@article, @article.comments.build]) do |f| %>
<%= f.label :name %>
<%= f.text_field :name %>
<%= f.label :content %>
<%= f.text_field :content %>
<br>
<%= f.submit "Create", class: "btn btn-large" %>
<% end %>
</div>
评论显示
<legend>Comments</legend>
<% comments.each do |comment| %>
<sabon><%= comment.name %></sabon><br>
<p><%= comment.content %></p>
<hr>
<% end %>
文章底部显示
<%= render partial: "comments/form", locals: { article: @article } %><br><br>
<%= render partial: "comments/show", locals: { comments: @article.comments }%>
路线
resources :articles do
resources :comments
end
任何帮助都会非常棒,谢谢你们,感谢提前安迪,如果你需要更多的代码,请大声喊叫。
答案 0 :(得分:5)
在评论表单行@article.comments.build
中创建新的评论对象。在呈现comments/show
之前渲染表单,因此@article.comments
集合中存在新的空白Comment对象。
<强>更新强> 您可以从注释中排除新创建的对象,例如:
@article.comments.reject(&:new_record?)