首页 > 代码库 > [李景山php]每天laravel-20161108|ShareErrorsFromSession.php
[李景山php]每天laravel-20161108|ShareErrorsFromSession.php
<?php namespace Illuminate\View\Middleware; use Closure; use Illuminate\Support\ViewErrorBag; use Illuminate\Contracts\View\Factory as ViewFactory; class ShareErrorsFromSession { /** * The view factory implementation. * * @var \Illuminate\Contracts\View\Factory */ protected $view;// The view factory implementation /** * Create a new error binder instance. * * @param \Illuminate\Contracts\View\Factory $view * @return void */ public function __construct(ViewFactory $view) { $this->view = $view;//set this view }//Create a new error binder instance. /** * Handle an incoming request. * * @param \Illuminate\Http\Request $request * @param \Closure $next * @return mixed */ public function handle($request, Closure $next) {//Handle an incoming request. // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren‘t errors. $this->view->share( ‘errors‘, $request->session()->get(‘errors‘) ?: new ViewErrorBag );//If the current session has an "errors" variable bound to it,we will share //its value with all view instances so the views can easily access errors //without having to bind. An empty bag is set when there aren‘t errors. // Putting the errors in the view for every view allows the developer to just // assume that some errors are always available, which is convenient since // they don‘t have to continually run checks for the presence of errors. return $next($request); //Putting the errors in the view for every view allows the developer to just // assume that some errors are always available, which is convenient since // they don‘t have to continually run checks for the presence of errors. } }
本文出自 “专注php 群号:414194301” 博客,请务必保留此出处http://jingshanls.blog.51cto.com/3357095/1846655
[李景山php]每天laravel-20161108|ShareErrorsFromSession.php
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。