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

修改问题文档

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