1

我遇到了“表单中的第一个参数不能包含 nil 或为空”错误的问题,我无法找到答案。

基本上,我有帖子,它们显示在用户的显示页面上,每个人都应该可以选择对它们发表评论。我的路线如下:

 resources :posts,         only: [:create, :destroy] do
    resources :comments,    only: [:create, :destroy]
 end

用户/show.html.erb

 <ol class="posts">
    <%= render @posts %>
 </ol>

帖子/_post.html.erb

<li>
  <span class="content"><%= post.content %></span>
  <span class="timestamp">
     Posted <%= time_ago_in_words(post.created_at) %> ago.
  </span>
  <% if current_user?(post.user) %>
    <%= link_to "delete", post,         method: :delete,
                                data: { confirm: "You sure?" },
                                title: post.content %>
  <% end %>
  <span class="content">
    <ul> Comments: <%= post.comments.count %></ul>
<% post.comments.each do |comment| %>
        <ul> <%= comment.comment %> </ul> 
<% end %>
  </span>

  <% if post != nil %>
      <% form_for [post, @comment] do |f| %>
          <%= render 'shared/error_messages', object: f.object %>
        <div class="field">
            <%= f.text_area :content, placeholder: "Comment..." %>
        </div>
        <%= f.submit "Post", class: "btn btn-lg btn-primary" %>
        <% end %>
    <% end %>
</li>

s comments_controller.rb

def create
    @post = Post.find(params[:id])
    @comment = @post.comments.build(comment_params)
    @comment.user = current_user
    if @comment.save
      flash[:success] = "Posted!"
      redirect_to @post
    else
      render 'static_pages/home'
    end
end

def destroy
  @comment.destroy
  redirect_to root_url
end

显示 C:/app/views/posts/_post.html.erb 其中第 21 行提出:(第 21 行是 form_for 行)表单中的第一个参数不能包含 nil 或为空 app/views/posts/_post.html.erb :21:in _app_views_posts__post_html_erb___306000501_37434348' app/views/users/show.html.erb:19:in_app_views_users_show_html_erb__480533737_37130988'

如果每个帖子都有一个显示页面,我知道我会将@posts 放在显示操作上,然后使其成为一个实例变量,但是由于每个帖子都需要一个单独的评论对话框,所以我不能让它那么笼统。虽然它没有通过帖子控制器,所以我不能让它特定于每个帖子。我正在使用acts_as_commentable 进行评论。理想情况下,我想让它们通用,并将所有 form_for 评论内容放入一个部分中,但我稍后会弄清楚。

4

0 回答 0