diff --git a/HttpServer/Route/Node.php b/HttpServer/Route/Node.php index 561a8aac..96ffa034 100644 --- a/HttpServer/Route/Node.php +++ b/HttpServer/Route/Node.php @@ -128,6 +128,15 @@ class Node extends HttpService $this->callback = $manager->callerMiddlewares( $this->handler[0], $this->handler[1], $this->aopHandler($this->getAop()) ); + + if ($this->path == '/goods/detail'){ + [$controller, $action] = $this->handler; + + $aspect = Snowflake::getDi()->getMethodAttribute($controller::class, $action); + + var_dump($aspect); + } + } return $this; }