我試圖創建一種讓用戶評論我的帖子的方法。目前,我的所有用戶信息都顯示在我的主頁上,然後在用戶個人信息中只顯示當前用戶信息。我希望獲得該評論,以便評論僅顯示在用戶個人資料的帖子中。我試圖在用戶配置文件中添加註釋表單,但是我得到了一個未定義的方法`註釋'爲nil:NilClass錯誤。未定義的方法`評論'爲零:NilClass
我comments_controller看起來像
class CommentsController < ApplicationController
def create
@post = Post.find(params[:post])
@comment = @post.comments.create(params[:comment])
redirect_to post_path(@post)
end
我有一個部分(_comment_form.html.erb),我在其中的樣子
<h2>Add a comment:</h2>
<%= form_for ([@post, @post.comments.build]) do |f| %>
<div class="field">
<%= f.label :commenter %><br />
<%= f.text_field :commenter %>
</div>
<div class="field">
<%= f.label :body %><br />
<%= f.text_area :body %>
</div>
<div class="actions">
<%= f.submit %>
</div>
<% end %>
我的評論模型看起來像
用戶配置文件正在呈現class Comment < ActiveRecord::Base
belongs_to :post
end
我的博文模型看起來像
class Post < ActiveRecord::Base
attr_accessible :content
belongs_to :user
validates :content, :presence => true
validates :user_id, :presence => true
validates :user, :presence => true
validates :title, :presence => true
has_many :comments
default_scope :order => 'posts.created_at DESC'
end
我的用戶配置文件看起來像show.html.erb
<table class="profile" summary="Profile information">
<tr>
<td class="main">
<h1>
<%= gravatar_for @user %>
<%= @user.name %>
</h1>
<% unless @user.posts.empty? %>
<table class="posts" summary="User posts">
<%= render @posts %>
<%= render 'comments/comment_form' %>
</table>
<% end %>
</td>
<td class="sidebar round">
<strong>Name</strong> <%= @user.name %><br />
<strong>URL</strong> <%= link_to user_path(@user), @user %><br />
<strong>Tasks</strong> <%= @user.posts.count %>
</td>
</tr>
</table>
試過,仍然出現同樣的錯誤。 –