如何在 Slim 3 中手动启动 404 处理程序?

2022-08-30 23:22:13

我们已经知道如何在 Slim 3 中添加自定义 404:notFoundHandler

$container['notFoundHandler'] = function ($c) {
    return function ($request, $response) use ($c) {
        return $c->view->render($response, 'pages/404.html.twig') 
            ->withStatus(404)
            ->withHeader('Content-Type', 'text/html');
    };
};

我想在我的一个路由中手动触发它。

在Slim 2中,我们能够做类似的事情。Slim 3 中的等效项是什么?$app->notFound()


答案 1

您需要抛出 \Slim\Exception\NotFoundException 的新实例

throw new \Slim\Exception\NotFoundException($request, $response);

答案 2

推荐