From 3209c11a0f90cc3a4f5156af5be78686889dc50e Mon Sep 17 00:00:00 2001 From: zhaoxiang Date: Thu, 28 Oct 2021 15:54:09 +0800 Subject: [PATCH] =?UTF-8?q?fixed=20=E4=BF=AE=E5=A4=8D=E5=9B=A0=E4=B8=BA?= =?UTF-8?q?=E6=99=AE=E9=80=9A=E6=A8=A1=E5=BC=8F=E8=AF=B7=E6=B1=82=E5=BC=82?= =?UTF-8?q?=E5=B8=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/middleware/ApiAuth.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/middleware/ApiAuth.php b/app/middleware/ApiAuth.php index c3e6742..0c6039b 100644 --- a/app/middleware/ApiAuth.php +++ b/app/middleware/ApiAuth.php @@ -25,14 +25,15 @@ class ApiAuth { $header = config('apiadmin.CROSS_DOMAIN'); $pathParam = []; - $pathArr = explode('/', $request->pathinfo()); + $pathParamStr = str_replace($request->rule()->getRule() . '/', '', $request->pathinfo()); + $pathArr = explode('/', $pathParamStr); $pathArrLen = count($pathArr); for ($index = 0; $index < $pathArrLen; $index += 2) { if ($index + 1 < $pathArrLen) { $pathParam[$pathArr[$index]] = $pathArr[$index + 1]; } } - $apiHash = $pathParam['api']; + $apiHash = str_replace('api/', '', $request->rule()->getRule()); if ($apiHash) { $cached = Cache::has('ApiInfo:' . $apiHash);