标签: ruby-on-rails ruby forms
如何在控制器重定向与帖子相同的数据这样做
<form action="http://example.com/" method="POST"> <input type="hidden" name="q" value="a"> </form>
我无法使用redirect_to,因为没有支持发布数据。
答案 0 :(得分:1)
你不能; HTTP规范不支持它。但是,您可以将POST数据存储在会话中,并在以后检索它。