AJAX PUT リクエストを介してフォーム データを送信する Rails アプリに取り組んでいます。コンソールに表示されるエラー メッセージを表示することから始めましょう。
Started POST "/submissions" for 98.245.21.165 at 2013-09-25 18:10:49 +0000
Processing by SubmissionsController#create as JSON
Parameters: {"title"=>"I'll be up in marikesh", "content"=>"Yup", "folder_id"=>"1"}
User Load (86.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
(86.3ms) BEGIN
SQL (178.9ms) INSERT INTO "submissions" ("content", "created_at", "folder_id", "parent_id", "title", "updated_at", "user_id") VALUES ($1, $2, $3, $4, $5, $6
, $7) RETURNING "id" [["content", nil], ["created_at", Wed, 25 Sep 2013 18:10:50 UTC +00:00], ["folder_id", nil], ["parent_id", nil], ["title", nil], ["update
d_at", Wed, 25 Sep 2013 18:10:50 UTC +00:00], ["user_id", nil]]
(90.9ms) COMMIT
(85.9ms) BEGIN
(86.3ms) COMMIT
Rendered submissions/create.html.erb within layouts/application (0.5ms)
Completed 200 OK in 701ms (Views: 52.6ms | ActiveRecord: 614.3ms)
ご覧のとおり、正しいアクションが開始され、パラメーターが渡されたため、フォームとルートが機能しています。ただし、パラメータはモデルの新しいインスタンスに送信されていません。
これが私の作成アクションです:
def create
ajax_title = params[:title]
ajax_content = params[:content]
ajax_folder = params[:folder_id]
ajax_parent = params[:parent_id]
ajax_children = params[:children]
@submissions = Submission.where(title: ajax_title)
if @submissions.empty?
@submission = Submission.create({title: ajax_title, content: ajax_content, user_id: current_user.id, folder_id: ajax_folder, parent_id: ajax_parent, children: ajax_children})
else
@submissions[0].content = ajax_content
@submissions[0].save
end
end
そして、ここに私のAJAXフォームがあります:
$("#save-entry").click(function(){
$.ajax({
type: "POST",
url: "/submissions",
dataType: "json",
data: {title: $("#title-create-partial").text(), content: $("#content-create-partial").text(), folder_id: <%= @folder.id %>},
complete: function(){
$.get("/ajax_load_events/", {folder: <%= @folder.id %>}, null, "script");
}
});
});
submit.rb モデルもチェックしましたが、すべての属性が attr_accessible であるため、問題にはなりません。ここで何が起こったのですか?作成アクションを変更/改善する方法についての提案もいただければ幸いです。実際に一意性をチェックする必要はありません (ユーザーは同じタイトルで複数の提出物を作成できるはずです)。そのため、アクションを簡素化する方法について提案があれば、それもありがたいです。
ここにsubmission.rbがあります:
class Submission < ActiveRecord::Base
attr_accessible :content, :title, :user_id, :folder_id, :parent_id, :children
belongs_to :user
belongs_to :folder
belongs_to :parent, :class_name => 'Submission'
has_many :children, :class_name => 'Submission', :foreign_key => 'parent_id', :order => ('updated_at DESC')
def self.search(search)
if search
where('name LIKE ?', "%#{search}%")
else
scoped
end
end
def attributes_with_children
attributes.merge(children: children.map(&:attributes_with_children))
end
end
logger.info(@submission.inspect)
この出力を追加して取得しました:
Started POST "/submissions" for 98.245.21.165 at 2013-09-25 18:56:23 +0000
Processing by SubmissionsController#create as JSON
Parameters: {"title"=>"test", "content"=>"test", "folder_id"=>"1"}
User Load (77.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
(83.5ms) SELECT COUNT(*) FROM "submissions" WHERE "submissions"."title" = 'test'
Completed 500 Internal Server Error in 181ms
NoMethodError (undefined method `each' for nil:NilClass):
app/controllers/submissions_controller.rb:16:in `create'
私は自分のルートをかき集めました。ここにあります:http://pastebin.com/gdfthakg