link_to 方法 post 不起作用 Rails 2.3.9
我正在尝试使用 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" %>
谢谢! =)
I'm trying to implement some link_to's using post method.
However, it always puts all the information as a query string in the browser's bar (it behaves as a GET).
Why?
Here is my code:
<%= 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" %>
Thank you! =)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该使用button_to
http://api.rubyonrails.org /classes/ActionView/Helpers/UrlHelper.html#method-i-button_to
You should use button_to
http://api.rubyonrails.org/classes/ActionView/Helpers/UrlHelper.html#method-i-button_to