以下代码甚至不呈现按钮:
<% form_tag :controller=> :create_new, :action=>:input do %>
<%=text_field_tag :my_input%>
<%=submit_tag "Send input"%>
<%end%>
控制器 create_new 具有以下方法
def input
@my_input=params[:my_input]
end
routes.rb 有:
resources :create_new do post :input, :on=>:collection