作者 王智

1

@@ -329,10 +329,10 @@ class Api @@ -329,10 +329,10 @@ class Api
329 //检测Token 329 //检测Token
330 protected function IsToken($token) 330 protected function IsToken($token)
331 { 331 {
332 - if (empty($token['token'])) { 332 + if (empty($token['authorization'])) {
333 $this->error('请登录后在操作', '', 401); 333 $this->error('请登录后在操作', '', 401);
334 } 334 }
335 - $is_token = Db::name('user')->where(['token' => $token['Authorization']])->find(); 335 + $is_token = Db::name('user')->where(['token' => $token['authorization']])->find();
336 if (!$is_token) { 336 if (!$is_token) {
337 $this->error('登陆已过期,请重新登陆', '', 90001); 337 $this->error('登陆已过期,请重新登陆', '', 90001);
338 } 338 }