作者 王晓刚
1 个管道 的构建 通过 耗费 0 秒

修改问题文档

... ... @@ -108,7 +108,11 @@ class Index extends Backend
$this->view->assign('title', __('Login'));
Hook::listen("admin_login_init", $this->request);
dump(session('token'));
$token = session('token');
if(!empty($token)){
$user_id = Db::name('user_token')->where(['token'=>$token])->value('user_id');
dump($user_id);
}
return $this->view->fetch();
}
... ...