我正在尝试使用 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" %>
谢谢!=)