所以我正在编写一个修改动作的基本成员,我想,让我们保持DRY并只修改params hash然后传递给我们的update
方法,但它似乎不起作用。我想有一些铁轨魔术正在进行,我无法找到......从我读过的这应该有用。我正在使用Rails 3.2。
以下是我正在尝试做的一个例子:
# POST /tasks/1/toggle_done
def toggle_done
@task = Task.find(params[:id])
puts "<<<<<", params
# invert done bool value
params[:done] = !(@task.done)
# thought maybe update_attributes retured a full set of
# attributes in the params...
#params[:name] = @task.name + "...test."
# thought maybe the method call to update was getting
# filtered or something. Doesn't seem to help.
#params[:_method] = "put"
# redirect to update with these new params
puts ">>>>>", params
# Why bother rewriting task.done = x; task.save;
# redirect_to show; etc when update already does that.
update
end
# PUT /tasks/1
# PUT /tasks/1.json
def update
@task = Task.find(params[:id])
puts "======", params
respond_to do |format|
if @task.update_attributes(params[:task])
format.html { redirect_to @task, notice: 'Task was successfully updated.' }
format.json { head :no_content }
else
format.html { render action: "edit" }
format.json { render json: @task.errors, status: :unprocessable_entity }
end
end
end
我得到以下控制台输出:
<<<<<
{"_method"=>"post", "authenticity_token"=>"CVqzsJfSVgM7Bq/kXlrjzkWVoA7Pbne4GNEHqbQB42s=", "action"=>"toggle_done", "controller"=>"tasks", "id"=>"1"}
>>>>>
{"_method"=>"put", "authenticity_token"=>"CVqzsJfSVgM7Bq/kXlrjzkWVoA7Pbne4GNEHqbQB42s=", "action"=>"toggle_done", "controller"=>"tasks", "id"=>"1", "done"=>false, "name"=>"Put Done button in index view...test."}
======
{"_method"=>"put", "authenticity_token"=>"CVqzsJfSVgM7Bq/kXlrjzkWVoA7Pbne4GNEHqbQB42s=", "action"=>"toggle_done", "controller"=>"tasks", "id"=>"1", "done"=>false, "name"=>"Put Done button in index view...test."}
所以看起来params数组是正确的。它使用闪存消息“任务已成功更新”呈现常规show
视图,因此看起来整个方法已执行但模型属性未更改。我想update_attributes中的内容失败了。任何人都可以为我阐明这一点吗?
这也是一个疯狂的事情吗?我应该在我的toggle_done方法中设置和保存而不是链接更新吗?
答案 0 :(得分:3)
Rails将任务对象的属性保存在哈希params[:task]
中。因此,您需要在toggle_done
方法中将结果保存在params[:task][:done]
中,否则rails无法将done
属性与任务相关联。
def toggle_done
@task = Task.find(params[:id])
params[:task] = { done: !(@task.done) }
update
end
但是通过调用update方法,你可以进行3次数据库查询,其中只有2个是必需的 - 前两个是完全相同的,因为你在toggle_done
方法和{{1}中加载带有ID的Task }。
为避免这种情况,您可以将保存和重定向部分放入受保护的方法中,并在需要保存时调用它。像这样:
update
答案 1 :(得分:2)
你将params [:task]传递给update_attributes,它不存在。尝试:
params[:task] = {:done => !(@task.done)}