小编典典

Laravel 重定向返回 with() 消息

all

当出现致命错误时,我正在尝试重定向到带有消息的上一页。

App::fatal(function($exception)
{
    return Redirect::back()->with('msg', 'The Message');
}

在试图访问味精的视图中

Sessions::get('msg')

但是什么都没有渲染,我在这里做错了吗?


阅读 61

收藏
2022-06-30

共1个答案

小编典典

尝试

return Redirect::back()->withErrors(['msg' => 'The Message']);

并在您的视图中调用此

@if($errors->any())
<h4>{{$errors->first()}}</h4>
@endif
2022-06-30