Fix "The GET method for this route is not supported. Supported methods: POST" error
P粉044526217
P粉044526217 2023-08-08 20:23:40
0
1
622
<p>The GET method for this route is not supported. Supported methods: POST. <br /><br />php artisan route:cache php artisan route:clear How long does it take to execute this command? I need a solution to this error<br /><br />I need a solution to this error</p><p><br /></p>
P粉044526217
P粉044526217

reply all(1)
P粉635509719

When you use a GET type route in the routes/web.php file, in the form using the method type "POST", it will appear an error of "GET method not supported", because the front-end submission type and There is a conflict between route types.

Try converting your routes in routes/web.php:

Route::get('/some-url', 'NameOfController@NameOfFunction');

Then

Route::post('/some-url', 'NameOfController@NameOfFunction');
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!