Laravel 5.5如何在视图页面中读取flash数据
Laravel 5.5 How to read flash data in a view page
我的控制器正在使用闪存数据(来自 table 行的数据)重定向到此视图。例如,如何打印 "titulo" 或 "resumo"?
或者,不是将所有信息从 table 行发送到单个变量,我是否必须分别发送到不同的变量?
提前致谢。
这是您可以从后端发送闪存数据的方式:
public function show (){
//some code here
return redirect('/')->with('flash', 'message here');
}
并且在视图中您可以这样显示它:
{{session('flash')}}
上面会显示"message here".
如果你有 return redirect('/')->with('alert', 'something happened');
{{session('alert')}}
以上会显示"something happened".
我的控制器正在使用闪存数据(来自 table 行的数据)重定向到此视图。例如,如何打印 "titulo" 或 "resumo"?
或者,不是将所有信息从 table 行发送到单个变量,我是否必须分别发送到不同的变量?
提前致谢。
这是您可以从后端发送闪存数据的方式:
public function show (){
//some code here
return redirect('/')->with('flash', 'message here');
}
并且在视图中您可以这样显示它:
{{session('flash')}}
上面会显示"message here".
如果你有 return redirect('/')->with('alert', 'something happened');
{{session('alert')}}
以上会显示"something happened".