我已将 :remote => true 添加到 _form.html.erb 中,现在想知道如何获取它,以便当用户保存页面上的内容时,它会保存并随后发出通知。
在我的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