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

잔글 (봇: 자동으로 텍스트 교체 (-==참고 자료== +==참고==))
16번째 줄: 16번째 줄:
*[[HTTP 메소드]]
*[[HTTP 메소드]]


==참고 자료==
==참고==
*https://laravel.com/docs/5.2/routing#form-method-spoofing
*https://laravel.com/docs/5.2/routing#form-method-spoofing


[[분류:Laravel]]
[[분류:Laravel]]

2017년 7월 11일 (화) 02:18 판

1 개요

Laravel form method
라라벨 폼 메소드
  • HTML form은 PUT, PATCH, DELETE의 action을 받지 않는다.
  • 라라벨에서 PUT, PATCH, DELETE를 정의 할 때 hidden으로 _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 같이 보기

4 참고

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