我需要從表單訪問hashmapped值。這是我看到我傾倒表單元素,但我不知道我怎麼能在控制器訪問它們:Ruby on Rails:訪問hashmap表單元素
{"Cart"=>{"exclude_discount"=>"1",
"only_one_product"=>"0",
"include_surcharge"=>"1",
"include_timesheet_date"=>"1"}}
我試圖訪問這些控制器使用
params[:Cart[only_one_product]]
and params[:Cart[:only_one_product]]
and params[:Cart["only_one_product"]]
都失敗。任何快速的幫助真的很感激。