When I am on the index page and click on the delete link to destroy the post i get that error:
Unknown action
No action responded to delete. Actions: add, edit, and index
我不理解为什么删除打字工作。 这是我的控制车——控制器。
def delete
@car = Car.find(params[:id])
flash[:notice] = "Question #{@car.name} deleted!"
@car.destroy
redirect_to :controller => :car, :action => :index
end
map.connect :controller/:action/:id
map.connect :controller/:action/:id.:format
map.root :controller => "main"
map.root :controller => "car"
end