繁体   English   中英

PHP-中间件\\ FastRoute软件包的nikic / FastRoute路由

[英]PHP - nikic/FastRoute routes for Middlewares\FastRoute package

我有这些路线:

['GET', '/article/{id}', ['SuperBlog\Controller\ArticleController', 'show']],

我正在使用Middleware\\FastRouteMiddle\\RequestHandlerRelay包来制作请求处理程序。 我也在用php-di DI容器。

我的问题是,如果我想使用上述路由,则会给我这个错误:

Deprecated: Non-static method SuperBlog\\Controller\\ArticleController::show() should not be called statically in

当我不使用方法(例如['GET', '/', 'SuperBlog\\Controller\\HomeController'], )时,它会很好地工作。

我的问题是如何使它起作用? 找不到任何解决方案。 我知道,如果将show方法设为静态,它会起作用,但是我认为这不是一个好主意。

bootstrap.php中

 /**
 * Routing
 */
$routes = simpleDispatcher(function (RouteCollector $r){
   $routes = include('routes.php');
    foreach ($routes as $route) {
        $r->addRoute($route[0], $route[1], $route[2]);
    }
});

$middlewareQueue[] = new FastRoute($routes);
$middlewareQueue[] = new RequestHandler($container);

$requestHandler = new Relay($middlewareQueue);
$response = $requestHandler->handle(ServerRequestFactory::fromGlobals());
$emitter = new SapiEmitter();
return $emitter->emit($response);

ArticleController.php

class ArticleController
{

    /**
     * @var ArticleRepository
     */
    private $articleRepository;

    /**
     * @var Twig_Environment
     */
    private $twig;


    /**
     * @var ResponseInterface
     */
    private $response;

    public function __construct(ArticleRepository $articleRepository, Twig_Environment $twig, ResponseInterface $response) {
        $this->articleRepository = $articleRepository;
        $this->twig = $twig;
        $this->response = $response;
    }


    public function show($request) {
        $article = $this->articleRepository->get($request->getAttribute('id'));

        $this->response->getBody()->write($this->twig->render('article.twig',[
            'article' => $article,
        ]));

        return $this->response;
    }

}

routes.php文件

return [
    ['GET', '/', 'SuperBlog\Controller\HomeController'],
    ['GET', '/article/{id}', ['SuperBlog\Controller\ArticleController', 'show']],
];
Try this:
 /**
 * Routing
 */
$routes = simpleDispatcher(function (RouteCollector $r){
    $routes = include('routes.php');
    foreach ($routes as $key => $route) {
       $r->addRoute($route[$key][0], $route[$key][1], $route[$key][2]);
    }
});

由于它是一个多维数组,因此包含在“ routes.php”中。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM