"라라벨 form"의 두 판 사이의 차이

(새 문서: ==개요== ;폼메쏘드 :form method *HTML form은 <code>PUT</code>, <code>PATCH</code>, <code>DELETE</code>의 action을 받지 않는다. *라라벨에서 <code>PUT</code>, <code>...)
 
16번째 줄: 16번째 줄:
==참고==
==참고==
*https://laravel.com/docs/5.2/routing#form-method-spoofing
*https://laravel.com/docs/5.2/routing#form-method-spoofing
[[분류:Laravel]]

2016년 5월 31일 (화) 21:15 판

1 개요

폼메쏘드
form method
  • HTML form은 PUT, PATCH, DELETE의 action을 받지 않는다.
  • 라라벨에서 PUT, PATCH, DELETE를 정의 할 때 hidden으로 _method를 넣어야함.
  • _method 필드는 HTTP 요청의 method로 사용된다.

2 PUT 예제

<form action="/foo/bar" method="POST">
    <input type="hidden" name="_method" value="PUT">
    <input type="hidden" name="_token" value="{{ csrf_token() }}">
</form>

3 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}