|
@@ -68,6 +68,9 @@ abstract class Auth extends Controller
|
|
|
try {
|
|
|
if (empty($this->uuid)) {
|
|
|
$token = $this->request->header('api-token','');
|
|
|
+ if (empty($token)){
|
|
|
+ $this->error('请重新登录,登录认证无效', '{-null-}', 401);
|
|
|
+ }
|
|
|
if($this->needLogin()) {
|
|
|
if (empty($token)) $this->error('登录认证不能为空!',null);
|
|
|
}
|