diff --git a/HttpServer/Route/Node.php b/HttpServer/Route/Node.php index 22d8ef9d..b0f98f93 100644 --- a/HttpServer/Route/Node.php +++ b/HttpServer/Route/Node.php @@ -496,6 +496,9 @@ class Node extends HttpService { if (empty($class)) return $this; foreach ($class as $closure) { + if ($this->path == 'xiaqi') { + var_dump(in_array($closure, $this->middleware)); + } if (in_array($closure, $this->middleware)) { continue; }