如何在 Slim v3 中访问中间件 class 中的 $container?
How to access the $container within middleware class in Slim v3?
我一直在读到在 Slim v2 中,$app 绑定到中间件 class。我发现这不是 v3 中的情况?下面是我的中间件 class,但我只是未定义:
<?php
namespace CrSrc\Middleware;
class Auth
{
/**
* Example middleware invokable class
*
* @param \Psr\Http\Message\ServerRequestInterface $request PSR7 request
* @param \Psr\Http\Message\ResponseInterface $response PSR7 response
* @param callable $next Next middleware
*
* @return \Psr\Http\Message\ResponseInterface
*/
public function __invoke($request, $response, $next)
{
// before
var_dump($this->getContainer()); // method undefined
var_dump($this->auth); exit; // method undefined
if (! $this->get('auth')->isAuthenticated()) {
// Not authenticated and must be authenticated to access this resource
return $response->withStatus(401);
}
// pass onto the next callable
$response = $next($request, $response);
// after
return $response;
}
}
在中间件中访问 DI 容器的正确方法是什么?我想应该有办法吧?
据我了解代码,Slim (v3) 的工作方式如下:
- 如果您将闭包作为中间件传递,那么它会调用
bindTo
并将容器作为参数。
如果你传递一个解析为 class 的 class/string,那么 Slim 会创建实例并将容器作为参数传递给构造函数
<?php
$app->add(Auth);
否则(例如,如果您添加之前创建的中间件实例),那么看起来您必须注意传递所有必要的引用。
晚会有点晚了,但可能会帮助其他人...
你必须在实例化中间件时注入你的容器
$container = $app->getContainer();
$app->add(new Auth($container));
你的中间件需要一个构造函数
<?php
namespace CrSrc\Middleware;
class Auth
{
private $container;
public function __construct($container) {
$this->container = $container
}
/**
* Example middleware invokable class
*
* @param \Psr\Http\Message\ServerRequestInterface $request PSR7 request
* @param \Psr\Http\Message\ResponseInterface $response PSR7 response
* @param callable $next Next middleware
*
* @return \Psr\Http\Message\ResponseInterface
*/
public function __invoke($request, $response, $next)
{
// $this->container has the DI
}
}
乐:
稍微扩展一下初始答案,如果您将中间件作为 class string
提供,则容器会得到 injected in the constructor
$app->add('Auth');
或
$app->add('Auth:similarToInvokeMethod')
我一直在读到在 Slim v2 中,$app 绑定到中间件 class。我发现这不是 v3 中的情况?下面是我的中间件 class,但我只是未定义:
<?php
namespace CrSrc\Middleware;
class Auth
{
/**
* Example middleware invokable class
*
* @param \Psr\Http\Message\ServerRequestInterface $request PSR7 request
* @param \Psr\Http\Message\ResponseInterface $response PSR7 response
* @param callable $next Next middleware
*
* @return \Psr\Http\Message\ResponseInterface
*/
public function __invoke($request, $response, $next)
{
// before
var_dump($this->getContainer()); // method undefined
var_dump($this->auth); exit; // method undefined
if (! $this->get('auth')->isAuthenticated()) {
// Not authenticated and must be authenticated to access this resource
return $response->withStatus(401);
}
// pass onto the next callable
$response = $next($request, $response);
// after
return $response;
}
}
在中间件中访问 DI 容器的正确方法是什么?我想应该有办法吧?
据我了解代码,Slim (v3) 的工作方式如下:
- 如果您将闭包作为中间件传递,那么它会调用
bindTo
并将容器作为参数。 如果你传递一个解析为 class 的 class/string,那么 Slim 会创建实例并将容器作为参数传递给构造函数
<?php $app->add(Auth);
否则(例如,如果您添加之前创建的中间件实例),那么看起来您必须注意传递所有必要的引用。
晚会有点晚了,但可能会帮助其他人... 你必须在实例化中间件时注入你的容器
$container = $app->getContainer();
$app->add(new Auth($container));
你的中间件需要一个构造函数
<?php
namespace CrSrc\Middleware;
class Auth
{
private $container;
public function __construct($container) {
$this->container = $container
}
/**
* Example middleware invokable class
*
* @param \Psr\Http\Message\ServerRequestInterface $request PSR7 request
* @param \Psr\Http\Message\ResponseInterface $response PSR7 response
* @param callable $next Next middleware
*
* @return \Psr\Http\Message\ResponseInterface
*/
public function __invoke($request, $response, $next)
{
// $this->container has the DI
}
}
乐: 稍微扩展一下初始答案,如果您将中间件作为 class string
提供,则容器会得到 injected in the constructor$app->add('Auth');
或
$app->add('Auth:similarToInvokeMethod')