Guest User

Untitled

a guest
Oct 18th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <%= form_for(@user, url: 'create', html: {method: 'GET'}) do |f| %>
  2. <%= f.label :name %>
  3. <%= f.text_field :name %>
  4. <%= f.submit %>
  5. <% end %>
  6.  
  7. ちなみにurl: 'hoge'と指定すると、
  8. コントローラ名#create
  9. に飛ばされる。
  10. form_forの性質上、転送先は同じコントローラ配下の別アクションであるとRailsは推測するから
Add Comment
Please, Sign In to add comment