【新手求教】我点新增数据页面报错

Sorry, the page you are looking for could not be found.

1/1
NotFoundHttpException in compiled.php line 7693:
in compiled.php line 7693
at RouteCollection->match(object(Request)) in compiled.php line 6965
at Router->findRoute(object(Request)) in compiled.php line 6937
at Router->dispatchToRoute(object(Request)) in compiled.php line 6929
at Router->dispatch(object(Request)) in compiled.php line 1935
at Kernel->Illuminate\Foundation\Http{closure}(object(Request))
at call_user_func(object(Closure), object(Request)) in compiled.php line 8952
at Pipeline->Illuminate\Pipeline{closure}(object(Request)) in compiled.php line 2438
at VerifyCsrfToken->handle(object(Request), object(Closure)) in VerifyCsrfToken.php line 17
at VerifyCsrfToken->handle(object(Request), object(Closure)) in compiled.php line 8944
at Pipeline->Illuminate\Pipeline{closure}(object(Request)) in compiled.php line 12083
at ShareErrorsFromSession->handle(object(Request), object(Closure)) in compiled.php line 8944
at Pipeline->Illuminate\Pipeline{closure}(object(Request)) in compiled.php line 10785
at StartSession->handle(object(Request), object(Closure)) in compiled.php line 8944
at Pipeline->Illuminate\Pipeline{closure}(object(Request)) in compiled.php line 11789
at AddQueuedCookiesToResponse->handle(object(Request), object(Closure)) in compiled.php line 8944
at Pipeline->Illuminate\Pipeline{closure}(object(Request)) in compiled.php line 11738
at EncryptCookies->handle(object(Request), object(Closure)) in compiled.php line 8944
at Pipeline->Illuminate\Pipeline{closure}(object(Request)) in compiled.php line 2478
at CheckForMaintenanceMode->handle(object(Request), object(Closure)) in compiled.php line 8944
at Pipeline->Illuminate\Pipeline{closure}(object(Request))
at call_user_func(object(Closure), object(Request)) in compiled.php line 8935
at Pipeline->then(object(Closure)) in compiled.php line 1891
at Kernel->sendRequestThroughRouter(object(Request)) in compiled.php line 1880
at Kernel->handle(object(Request)) in index.php line 53

以上是错误信息,求大神指导,谢谢!
已邀请:

xiaoluyouyue

赞同来自:

1,路由问题,查看下你route.php中配置路由的配置方式,正常的表单的提交方式是post,所以你配置的路由应该是支持post,
like:
Route::post('foo/bar', function()
{
return 'Hello World';
});
仅仅支持:
Route::get('foo/bar', function()
{
return 'Hello World';
});
两种都支持
Route::match(['get', 'post'], '/', function()
{
return 'Hello World';
});或者
Route::any('Census/index',['middleware'=>'auth','uses'=>'Backstage\Census\CensusController@index']);加粗文字

双子星 - Laravel群:9783891

赞同来自:

路由设置出错,路由三种设置方法,你至少设置一种。

fix丶ed

赞同来自:

Sorry, the page you are looking for could not be found.
估计视图地址有问题,可以先调试下访问Controller是否访问到

要回复问题请先登录注册