Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 612 Bytes

patch-and-delete.md

File metadata and controls

24 lines (18 loc) · 612 Bytes

Patch and Delete

The Patch and Delete HTTP verbs are used to update and delete data on the server. But they are not supported by HTML, which mean that in a form in HTML we cannot do this:

<form action="/test" method="PATCH">
</form>

But rails has a different way to determine if a request is supposed to be PATCH or DELETE.

<form action="/test" method="POST">
  <input type='hidden' name="_method" value="PATCH">
</form>

And similarly for delete:

<form action="/test/7" method="POST">
  <input type='hidden' name="_method" value="DELETE">
  <input type='submit'>
</form>