作者 王智

1

... ... @@ -332,7 +332,7 @@ class Api
if (empty($token['token'])) {
$this->error('请登录后在操作', '', 401);
}
$is_token = Db::name('user')->where(['token' => $token['authorization']])->find();
$is_token = Db::name('user')->where(['token' => $token['Authorization']])->find();
if (!$is_token) {
$this->error('登陆已过期,请重新登陆', '', 90001);
}
... ...