public function store(Request $request){ $this->valIDateData($request->all()); // store something return redirect()->action('controller@index')->withMessage( 'Saved Successfully' );}private function valIDateData($requestParams){ try { $valIDator->valIDate( $requestParams ); } catch ( ValIDationException $e ) { redirect()->action('controller@create')->withinput()->withErrors( $e->get_errors() )->send(); exit(); // this causes the withErrors to not be there }}
如果我删除exit();,将出现错误消息,但也将执行存储函数(请参阅//存储某些内容).我知道我可以重写我的代码:
if($this->valIDateData($request->all())){ // store something return redirect()->action('controller@index')->withMessage( 'Saved Successfully' );}
但我不希望这里有丑陋的if语句.必须有一种方法可以在没有闪存消息的情况下重定向.
解决方法 TL;博士像这样更新你的私有方法代码,使重定向工作与$errors变量可见:
private function valIDateData($requestParams){ try { $valIDator->valIDate( $requestParams ); } catch ( ValIDationException $e ) { $resp = redirect()->action('WelcomeController@index')->withinput()->withErrors($e->get_errors()); \Session::driver()->save(); $resp->send(); exit(); }}
交代
当退出控制器中间时,在应用程序终止中执行的某些作业将不再执行.在您的情况下,将不会调用会话中间件终止方法.让我们看看它的内容(ref):
public function terminate($request,$response){ if ($this->sessionHandled && $this->sessionConfigured() && ! $this->usingcookieSessions()) { $this->manager->driver()->save(); }}
现在,看看Session驱动程序的save方法(ref)
public function save(){ $this->addBagDataToSession(); $this->ageFlashData(); $this->handler->write($this->getID(),$this->prepareForStorage(serialize($this->attributes))); $this->started = false;}
如您所见,只有在Session中间件成功终止时才会保存您的Flash数据.使用旧代码,闪存数据将丢失!
我对我的代码所做的是在将响应发送到浏览器之前手动调用save方法.但是,我仍然建议您将重定向带到公共控制器方法.
总结以上是内存溢出为你收集整理的php – Laravel从私有方法重定向有错误全部内容,希望文章能够帮你解决php – Laravel从私有方法重定向有错误所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)