此路线不支持邮政方法

问题描述 投票:0回答:1

我的保存/存储页面上出现错误:

此路由不支持POST方法。支持的方法:GET,HEAD,PUT,PATCH,DELETE。

我不知道发生了什么,我是Laravel的新手。

控制器:Here is the code

网络路线:

Route::resource('post', 'PostControl');
php laravel laravel-routing
1个回答
1
投票

您正在发送不应发送的POST请求。参见下表:

enter image description here

例如,将POST发送到photos.edit路由将触发此错误...。>

最新问题
© www.soinside.com 2019 - 2025. All rights reserved.