所以我寫了一個基本的成員修改操作,我想,讓我們保持乾爽,只是修改params散列,然後傳遞給我們的update
方法,但它似乎不工作。我想有一些軌道魔法會發生,我無法找到...從我讀過的這個應該可以工作。我正在使用Rails 3.2。如何從rails 3中的其他操作調用更新操作?
這裏是什麼,我試圖做一個例子:
# 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方法中設置並保存,而不是鏈接更新?
Doh。顯然沒有引起足夠的重視。我想我的問題仍然存在,這是否是合法的「軌道方式」? – Soup 2012-04-22 14:45:12
我想這只是像你這樣做,但正如我在我的回答中指出的那樣,您正在提出更多的數據庫請求。 – klump 2012-04-22 14:47:14
因此,DRY的方式是將通用代碼放入自己的方法中,然後調用它們。 – klump 2012-04-22 14:53:07