1

当我昨天下班时,路由工作得很好。从那以后我就再也没有碰过它,在我测试了这个网站(并且它有效)之后,我唯一做的就是制作一个新模型并使用php artisan make:model.

大约 35 分钟前,当我进来上班时,噗。网站不工作。路线与 get 方法一起使用(Route::get('/', 'blahContoller@index')但在所有方法上都失败了Route::post。我很难过。在这个项目之后回到 laravel 5,5.1 被破坏得令人难以置信,而且比 5.0 更糟,并且给我带来了实际上浪费更多时间的问题然后 laravel 应该保存。

我得到的错误:

RouteCollection.php 第 143 行中的 NotFoundHttpException

我的路线:

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

Route::post('checkout', 'TurboController@checkout');
Route::post('securePayment', 'TurboController@securePayment');

Route::get('thankYou', function(){
    return view('thankYou');
});

我不明白,我从昨天上午 9:00 开始就没有碰过路由文件,一直工作到今天测试它。

在你问之前我已经尝试过 DUMPAUTOLOAD ;)

4

1 回答 1

0

尝试在终端中运行这些

php artisan clear-compiled, php artisan cache:clear, php artisan route:clear

于 2015-07-04T07:56:29.657 回答