路线
resources :cars do
collection do
get :f01a
end
end
控制器
class CarsController < ApplicationController
def f01a
@user = User.find(params[:id])
@count = Count.find_by_user_id(@user)
@count.increment!(:f02)
redirect_to @user
end
end
看法
<%= button_to "add f01", f01a_cars_path %>
我不能让它工作。我需要从一个按钮执行此代码。