标签: laravel
如何使用Redirect转发以前闪存的数据。我可以使用Session::reflash()或者我可以从会话中获取数据并再次刷新它,但我看起来像:
Redirect
Session::reflash()
Redirect::route('index') ->with('message', 'hello') ->withReflash();
有类似withReflash()的内容吗?
withReflash()
答案 0 :(得分:2)
正如您在RedirectResponse课程中所看到的,没有任何类似的方法,因此您仍需要使用->reflash()手动重新刷新会话数据。
RedirectResponse
->reflash()