Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

rails patch method

<%= form_tag your_path, method: 'patch' %>
<!-- == -->

 <form name="NAME" accept="UTF-8" method="post" action="path/to/action">
  <input type="hidden" name="_method" value="patch">
  <!-- ... -->
 
PREVIOUS NEXT
Tagged: #rails #patch #method
ADD COMMENT
Topic
Name
7+4 =