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
最新回答 / SemanTIC
是路由那边的get请求改成any就行了。但改成any后会报新错:TokenMismatchException in VerifyCsrfToken.php line 67:这是post请求没有打开表单令牌而导致的。解决方法:在form表单里随便放个隐藏域<input type="hidden" name="_token" value="{{csrf_token()}}"/>就可以了。这错卡了我一整天
2017-08-27
返回上一页面back()使用的路由,不能在路由群组中,而是要单独写一条路由:
Route::any('response', ['uses' => 'StudentController@response']);
Route::any('response', ['uses' => 'StudentController@response']);
2017-08-27
在年龄一行添加数据,会弹出BadMethodCallException in Validator.php line 1067:
Method [validateInter] does not exist.??????
Method [validateInter] does not exist.??????
2017-08-25