Rails控制器:更新操作无法执行SQL UPDATE?

时间:2013-02-01 10:00:19

标签: sql ruby-on-rails controller

在Rails应用程序中,我有用户可以在每个用户节目视图中创建在其下面创建的注释。

从节目视图中可以添加和编辑注释。编辑链接正确路由到每个笔记的编辑路径。单击“保存”以更新注释会重定向回用户节目视图。

这是我的笔记控制器:

  def update
    @note = Note.find(params[:id])

    redirect_to user_path(@note.user)
  end

但是,我正在尝试更新注释条目,而在控制台中我发现由于某种原因它没有更新。 BEGIN和COMMIT之间应该有UPDATE步骤,但这里似乎缺少。

Started PUT "/notes/2" for 127.0.0.1 at 2013-02-01 01:50:25 -0800
Processing by NotesController#update as HTML
  Parameters: {"utf8"=>"✓", "authenticity_token"=>"Wr+urG+6QvsbPuFpVGUEEqc8QVYiu5q8j389YmOi6Zg=", "note"=>{"author"=>"MZ", "note"=>"Test"}, "id"=>"2"}
  Note Load (0.2ms)  SELECT "notes".* FROM "notes" WHERE "notes"."id" = $1 LIMIT 1  [["id", "2"]]
   (0.2ms)  BEGIN
   (0.1ms)  COMMIT
  User Load (0.2ms)  SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
Redirected to http://localhost:3000/users/1
Completed 302 Found in 37ms (ActiveRecord: 3.8ms)

为什么没有UPDATE步骤的原因是什么?

2 个答案:

答案 0 :(得分:2)

您没有更新属性。您必须致电update_attributes并传递params进行更新。

def update
  @note = Note.find(params[:id])             #find the note
  if @note.update_attributes(params[:note])  #update the note
    redirect_to @note.user                   #if attributes updated redirect to @note.user
  else
    render :edit                             #if not, render the form
  end
end

答案 1 :(得分:0)

试试这个,你错过了update_attributes。这是调用更新方法的正确方法。如果更新成功,您将收到一条Flash消息。

def update
    @note = Note.find(params[:id])

    respond_to do |format|
      if @note.update_attributes(params[:note]) # you need to make sure about the :note
        format.html { redirect_to user_path(@note.user), notice: 'Notes was successfully updated.' }
      else
        format.html { render actino: "edit" }
      end
    end
end