报错:Symfony \ Component \ HttpKernel \ Exception \ AccessDeniedHttpException
This action is unauthorized
This action is unauthorized
2017-09-09
好吧!$this->validate验证信息无法显示原因找到了!
就是Aosora说的中间件的问题,把路由移出中间件就好了
就是Aosora说的中间件的问题,把路由移出中间件就好了
2017-09-09
其实不单单是sex会出现报错 name框和age框也会出现报错 因为当创建的时候没有student的值而他要使用该值则会报错 解决方法:
{{old('name') ? old('name') : (isset($student->name) ? $student->name : '') }}
写两个三元运算符 当他的否则没有的话则判断student是否存在 如果存在则使用 否则则使用空字符串 这样就不会报错了 不懂私信我
{{old('name') ? old('name') : (isset($student->name) ? $student->name : '') }}
写两个三元运算符 当他的否则没有的话则判断student是否存在 如果存在则使用 否则则使用空字符串 这样就不会报错了 不懂私信我
2017-09-08
5.2.45版本中,将Route::group(['middleware'=>['web']],function(){
});的路由拿出来就能得到错误信息。
});的路由拿出来就能得到错误信息。
2017-09-04
补充一下 $res = $next($request);return $res; 只写个return 也要报同样的错误。
2017-09-02
5.4版本中间件后置操作结尾不return的话会报Trying to get property of non-object错误
2017-09-02
返回上一页面back()使用的路由,不能在路由群组中,而是要单独写一条路由:
Route::any('response', ['uses' => 'StudentController@response']);
Route::any('response', ['uses' => 'StudentController@response']);
2017-08-27