Ruby on Rails:访问哈希映射的表单元素

发布于 2024-11-02 22:49:00 字数 399 浏览 0 评论 0原文

我需要从表单访问哈希映射值。这是我看到的转储表单元素的内容,但我不确定如何在控制器中访问它们:

{"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"]]

“一切失败”在控制器中访问它们。非常感谢任何快速帮助。

I need to access a hashmapped value from a form. Here is what I see I dump the form elements but I am NOT sure how I can access them in controller:

{"Cart"=>{"exclude_discount"=>"1",
 "only_one_product"=>"0",
 "include_surcharge"=>"1",
 "include_timesheet_date"=>"1"}}

I tried to access them in controller using

params[:Cart[only_one_product]]
and params[:Cart[:only_one_product]]
and params[:Cart["only_one_product"]]

Everything fails. Any quick help is really appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

枉心 2024-11-09 22:49:01

你想要 params[:Cart][:exclude_discount]

因为它是哈希的哈希,所以你需要首先获取外层哈希 'params[:Cart]' 的元素,然后获取内层哈希该哈希的元素 [:exclude_discount]

you want params[:Cart][:exclude_discount]

Since it is a hash of a hash, you need to first get the element of the outer hash 'params[:Cart]', then get the inner element of that hash, [:exclude_discount].

世界如花海般美丽 2024-11-09 22:49:01
params[:Cart][:only_one_product]  

是访问它的正确方法。

params[:Cart][:only_one_product]  

is the right way to access it.

夕色琉璃 2024-11-09 22:49:01
params["Cart"]["only_one_product"]
params["Cart"]["only_one_product"]
冷月断魂刀 2024-11-09 22:49:01

长款

cart = params[:Cart] # get hash
is_only_one_product = cart[:is_only_one_product] # get hash key-value

短款

is_only_one_product = params[:Cart][:is_only_one_product] # get hash key-value

Long style

cart = params[:Cart] # get hash
is_only_one_product = cart[:is_only_one_product] # get hash key-value

Short style

is_only_one_product = params[:Cart][:is_only_one_product] # get hash key-value
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文