为了账号安全,请及时绑定邮箱和手机立即绑定

laravel 不支持 put 方法

laravel 不支持 put 方法

PHP
莫回无 2023-04-28 15:57:44
我尝试使用编辑路径更新帖子,但是当我发送表单并使用更新功能时出现错误我的代码是<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">
查看完整描述

4 回答

?
肥皂起泡泡

TA贡献1829条经验 获得超6个赞

你必须这样使用


<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}', ...)


查看完整回答
反对 回复 2023-04-28
?
慕码人8056858

TA贡献1803条经验 获得超6个赞

我把我在 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}}. 

</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>


查看完整回答
反对 回复 2023-04-28
?
哆啦的时光机

TA贡献1779条经验 获得超6个赞

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



查看完整回答
反对 回复 2023-04-28
?
扬帆大鱼

TA贡献1799条经验 获得超9个赞

您可以执行以下操作:


<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');


查看完整回答
反对 回复 2023-04-28
  • 4 回答
  • 0 关注
  • 148 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信