已关闭。此问题需要details or clarity。它目前不接受回答。
**希望改进此问题?**通过editing this post添加详细信息并阐明问题。
13小时前关闭
Improve this question的
此路由不支持GET方法。支持的方法:POST。
php artisan route:cache php artisan route:clear how much time we fire this command我需要正确解决这个错误
我需要正确解决这个错误
已关闭。此问题需要details or clarity。它目前不接受回答。
**希望改进此问题?**通过editing this post添加详细信息并阐明问题。
13小时前关闭
Improve this question的
此路由不支持GET方法。支持的方法:POST。
php artisan route:cache php artisan route:clear how much time we fire this command我需要正确解决这个错误
我需要正确解决这个错误
2条答案
按热度按时间xggvc2p61#
当您在
routes/web.php
文件中使用GET
类型的路由时,在使用"POST"
类型的method
的形式中,它会给出The GET method is not supported for this route
,因为前端的提交类型和路由类型之间存在冲突。尝试在
routes/web.php
中转换路由:字符串
对此:
型
dddzy1tm2#
错误声明是安静的解释!但你的问题不是。如果没有您的代码片段,可以看到您正在尝试访问仅支持POST的端点,因此解决方案可以执行以下操作:
1.尝试端点的POST请求,或者
1.如果是你自己的API,如果需要的话,你可以让端点像这样支持GET
Route::get('/get-something', 'yourController@yourFunctionForHandlingThisRoute');