我想通過(guò)控制器更新數(shù)據(jù)。但我收到此錯(cuò)誤:The PUT method is not supported for this route. Supported methods: GET, HEAD.我正在使用 {{method_field('PUT')}}。為什么會(huì)出現(xiàn)此錯(cuò)誤?路線(xiàn):Route::post('updateColors/{color}', 'Admin\UserController@updateColor')->name('updateColors');控制器:public function updateColor(Request $request, Color $color){...}在視圖中:<form action="{{route('updateColors',$color)}}" method="POST">...@csrf{{method_field('PUT')}}</form>
1 回答

米琪卡哇伊
TA貢獻(xiàn)1998條經(jīng)驗(yàn) 獲得超6個(gè)贊
試試@method('PUT')
你的表單和 web.php 中的“Put route”Route::put($uri, $callback);
- 1 回答
- 0 關(guān)注
- 138 瀏覽
添加回答
舉報(bào)
0/150
提交
取消