TasksController の show アクションからコメント フォームをインスタンス化していますが、パラメータがフォームに渡されません。
class TasksController < ApplicationController
def show
@task = Task.find(params[:id])
@comment = Comment.new(task_id: @task.id)
end
ビュー/タスク/show.html.erb:
<%= form_for @comment, html: {class: "centrera_parent"}, remote: true do |f| %>
<%= f.text_area :content, placeholder: "Add a comment", class: "centrera_child" %><br />
<%= f.submit "Post Comment" %>
<% end %>