重定向到下一页后,Laravel会话数据将被清除

时间:2016-09-06 15:23:41

标签: php laravel redirect laravel-5 frameworks

使用Laravel 5.2

我试图将会话数据存储在控制器中,然后如果验证成功,我想将用户重定向到下一页。当我执行Redirct :: to('nextpage')时,会话数据在我的下一页和控制器中丢失。

这是从“domainSearch”获取表单发布值的控制器

class domainSearch extends Controller
{ 
    public function store(Request $request)
    {
        // validate the info, create rules for the inputs
        $rules = array(
            'domainSearch'    => 'required' // make sure the username field is not empty
        );

        // run the validation rules on the inputs from the form
        $validator = Validator::make(Input::all(), $rules);

        // if the validator fails, redirect back to the form
        if ($validator->fails()) {
            return Redirect::to('/')
                ->withErrors($validator) // send back all errors to the login form
                ->withInput(Input::except('password')); // send back the input (not the password) so that we can repopulate the form
        }
            else {
                // validation not successful, send back to form
            $request->session()->put('domainname', $request->get('domainSearch'));
                return Redirect::to('/domainlist');

            }

        }
    }

这是我尝试将会话数据传递到接收器的控制器。但它始终保持为空。

 class DomainList extends Controller
    {
        public function index(Request $request){

            var_dump($request->get('domainname'));
            return view('domainlist');
        }
    }

如果我将用户发送到下一页并带有返回视图('view');会话数据在那里,但在使用重定向功能时会被清除。

如何在不丢失会话数据和变量的情况下重定向?

2 个答案:

答案 0 :(得分:1)

在索引中尝试var_dump($request->session()->get('domainname'));

顺便说一下,您还可以使用session()全局函数来存储或检索会话数据。

Route::get('home', function () {
  // Retrieve a piece of data from the session...
  $value = session('key');

  // Store a piece of data in the session...
  session(['key' => 'value']);
});

答案 1 :(得分:-1)

这是因为您尝试检索GET参数而不是SESSION变量。试试这个:

 class DomainList extends Controller
{
    public function index(Request $request){

        var_dump($request->session()->get('domainname'));
        return view('domainlist');
    }
}