This commit is contained in:
2021-08-13 15:32:35 +08:00
parent 759307050a
commit cf0cae7c87
+1 -3
View File
@@ -403,7 +403,6 @@ class Router extends HttpService implements RouterInterface
* @param $method * @param $method
* @return Node|null * @return Node|null
* 查找指定路由 * 查找指定路由
* @throws RequestException
*/ */
public function tree_search(?array $explode, $method): ?Node public function tree_search(?array $explode, $method): ?Node
{ {
@@ -414,7 +413,7 @@ class Router extends HttpService implements RouterInterface
while ($value = array_shift($explode)) { while ($value = array_shift($explode)) {
$node = $parent->findNode($value); $node = $parent->findNode($value);
if (!$node) { if (!$node) {
throw new RequestException('<h2>HTTP 404 Not Found</h2><hr><i>Powered by Swoole</i>', 404); return null;
} }
$parent = $node; $parent = $node;
} }
@@ -534,7 +533,6 @@ class Router extends HttpService implements RouterInterface
return $node; return $node;
} }
if (!$request->isOption) { if (!$request->isOption) {
var_dump($request);
return null; return null;
} }
$node = $this->tree_search(['*'], $request->getMethod()); $node = $this->tree_search(['*'], $request->getMethod());