** Holen Sie sich den Wert mit dem Kontrollkästchen des Formulars und machen Sie es zu einem Array. ** **.
ActionController::Parameters {"authenticity_token"=>"DoVsq/+dLxgEzm0kXJUo4SWmHx5CBR1GmeV+yNaAeYcDmyMg8nWcMDNSWeMY**************==", "hogehoge"=><ActionController::Parameters {"aaa"=>"0", "bbb"=>"1", "ccc"=>"1", "ddd"=>"1",} permitted: false>, "commit"=>"Suche", "controller"=>"distributions", "action"=>"search"} permitted: false>
** Weil das Formular so kommt **
params[:hogehoge].permit!.select { |key, value| value == "1" }.keys
["bbb","ccc", "ddd"]
Ich habe es als ** bekommen. ** **.
Recommended Posts