17
如何正確調用link_to的創建動作?我正在使用REST(map.resources:recipes)。下面是創建行動:Ruby on Rails:我可以做一個「link_to」來調用創建操作嗎?
def create
recipe = Recipe.create(:name => "French fries")
redirect_to recipe
end
例如,我想這樣的事情可能工作:
<%= link_to "Create a default recipe", recipe_path, :method => :post %>
我不知道這是一個推薦的(甚至是正確的)的方式來做到這一點。任何想法?
欣賞你漂亮的解釋探究性!非常感謝! :) – sjsc 2010-04-24 20:26:01