所以我正在做的是,当我选中 记住我 复选框时,用户在注销表单(用户名和密码)时记住这样的用户数据:
所以这是我的代码,它不起作用:(
// create our user data for the authentication
$userdata = array(
'email' => Input::get('email'),
'password' => Input::get('password')
);
// attempt to do the login
if (Auth::attempt($userdata, true)) {
Session::flash('message', array('body'=>trans('login-signup.welcome'), 'type'=>'success'));
return Redirect::to('/');
}
原文由 Mohammadov 发布,翻译遵循 CC BY-SA 4.0 许可协议
使用 Cookie
去创造:
检索
你的问题不是记住用户登录。问题是如何根据保存的授权信息填写输入。如果在加载页面时在输入值属性中打印身份验证值,则可以这样做。
幼虫饼干文档
Laravel 也有它自己的“记住我”的实现
有关 “验证用户并“记住”他们”的 更多信息