1

我在 RouteCollection.php 第 218 行收到 MethodNotAllowedHttpException:当我在 larave-localization 路由组中发布表单时。

这是我的本地化路线组:

Route::group([
'prefix' => LaravelLocalization::setLocale(),
'middleware' => [ 'localeSessionRedirect', 'localizationRedirect' ]   ], function() {
 Route::post('/offerselect', 'SearchController@getCarList');

 Route::get('/', 'PageController@index');

  });

我在 index.blade php 中有一个表单,它发布到 /offerselect 但是当我发布它时,我得到了 methodnotallowed 异常。如果我将帖子放在组之外,它可以在没有本地化的情况下工作......

4

1 回答 1

0

检查 php artisan routes 您的路线是否定义正确。

更新:那是你的整个 routes.php 吗?

于 2016-07-24T16:11:48.633 回答