_form.html.erbに:remote => trueを追加しましたが、ユーザーがページの内容を保存すると、保存して通知が表示されるように、どうすれば取得できるのか疑問に思いました。
私のdocuments_controller.rbには、次のものがあります。
def create
@document = current_user.documents.build(params[:document])
if @document.save
redirect_to @document.edit, notice: 'Saved'
else
render action: "new"
end
end
def update
@document = current_user.documents.find_by_url_id(params[:id])
if @document.update_attributes(params[:document])
redirect_to @document, notice: 'Saved'
else
render action: "edit"
end
end