link_to方法帖子不工作Rails 2.3.9

时间:2011-09-07 01:55:16

标签: ruby link-to ruby-on-rails-2

我正在尝试使用post方法实现一些link_to。

但是,它总是将所有信息作为查询字符串放在浏览器的栏中(它表现为GET)。

为什么?

这是我的代码:

<%= link_to hotel[:name], {:controller => "gds_hotels", :action => "hotel_details",
                      :dest => @destination,
                      :ci => @check_in,
                      :co => @check_out,
                      :hotel => hotel,
                      :rooms => hotel[:rooms]}, :method => "POST" %>

谢谢! =)

1 个答案:

答案 0 :(得分:2)