0
나는 약간의 마법사가있어서 폼에 대한 사용자 입력을 기반으로 사용자를 라우팅하고 싶습니다. 다음과 같이Rails 4 + Wicked : 경로를 매개 변수로 사용하기
나는 단계를 나열했습니다 :
steps :weight_loss_history, :health_conditions, :cancer, :weight_mindset, :diabetes, :diet_information, :heart, :food_intake
을 ... 다음과 같이 내 갱신 및 라우팅 기능은 다음과 같습니다
def update
@remote = current_remote
params[:remote][:step] = step
atts = Remote.fix_attributes(params[:remote])
@remote.attributes = atts # equal to large hash of params
find_route(@remote)
end
def find_route(info)
if info[:cancer]
puts "cancer..." # I never see this in the console
jump_to(:cancer)
else
render_wizard info
end
end
사람이 행 노선의 사악한 사용의 좋은 구현이 있습니까 사용자는 자신의 선택에 따라?