laravel 不支持 put 方法

我尝试使用编辑路径更新帖子,但是当我发送表单并使用更新功能时出现错误

http://img.mukewang.com/644b7c9300016f5113200616.jpg

我的代码是


<form action="/posts{{$posts->id}}" method="POST">

@method('PUT')

@csrf

<label for="">title</label>

<input type="text" name="title" class="form-control" >

<label for="">body</label>

<textarea type="text" name="body" class="form-control">{{$post->body}}</textarea>

<input type="submit" class="btn btn-primary" value="edit">


莫回无
浏览 149回答 4
4回答

肥皂起泡泡

你必须这样使用<form action="{{url('')}}/posts/{{$post->id}}" method="POST">@csrf<label for="">title</label><input type="text" name="title" class="form-control" ><label for="">body</label><textarea type="text" name="body" class="form-control">{{$post->body}}</textarea><input type="submit" class="btn btn-primary" value="edit">在你的路线中这样使用Route::post('/posts/{id}', ...)

慕码人8056858

我把我在 laravel 文档中找到的隐藏方法放在了一起并且工作正常<form action="/posts/{{$post->id}}" method="POST">@csrf<label for="">title</label><input type="text" name="title" class="form-control" ><label for="">body</label><textarea type="text" name="body" class="form-control">{{$post->body}}.&nbsp;</textarea><input type="submit" class="btn btn-primary" value="edit"><input type="hidden" name="_method" value="PUT"><input type="hidden" name="_token" value="{{ csrf_token() }}"></form>

哆啦的时光机

您在操作中&nbsp;缺少/action="/posts/{{ $posts->id }}"

扬帆大鱼

您可以执行以下操作:<form action="{{ route('route.name', $post->id) }}" method="POST">@csrf<label for="">title</label><input type="text" name="title" class="form-control" ><label for="">body</label><textarea type="text" name="body" class="form-control">{{$post->body}}</textarea><input type="submit" class="btn btn-primary" value="edit">对于路线:Route::post('/posts/{id}', 'Controller@function')->name('route.name');
打开App,查看更多内容
随时随地看视频慕课网APP