xieruidong 2 lat temu
rodzic
commit
3e85c21ddf
1 zmienionych plików z 2 dodań i 3 usunięć
  1. 2 3
      app/data/controller/api/Auth.php

+ 2 - 3
app/data/controller/api/Auth.php

@@ -51,9 +51,8 @@ abstract class Auth extends Controller
     {
         // 检查接口类型
         $this->type = $this->request->header('api-name');
-        if (empty($this->type)) $this->error("接口类型异常!");
-        if (!isset(UserAdminService::TYPES[$this->type])) {
-            $this->error("接口类型[{$this->type}]未定义!header中增加api-name,值为手机浏览器访问wap电脑浏览器访问web微信小程序访问wxapp微信服务号访问wechat苹果应用接口访问isoapp安卓应用接口访问android");
+        if (empty($this->type)||!isset(UserAdminService::TYPES[$this->type])) {
+            $this->error("接口类型未定义!header中增加api-name,值为手机浏览器访问wap电脑浏览器访问web微信小程序访问wxapp微信服务号访问wechat苹果应用接口访问isoapp安卓应用接口访问android");
         }
         // 读取用户数据
         $this->user = $this->getUser();