我正在尝试从justinrainbow实现json-schema验证器作为Slim 3中的中间件。
我无法弄清楚如何在中间件中从GET / POST请求获取客户端输入。
试过这样:
$mw = function ($request, $response, $next) {
$data = $request->getParsedBody();
print_r($data); // prints nothing
$id = $request->getAttribute('loan_id');
print_r($id); // prints nothing
// here I need to validate the user input from GET/POST requests with json-schema library and send the result to controller
$response = $next($request, $response);
return $response;
};
$app->get('/loan/{loan_id}', function (Request $request, Response $response) use ($app, $model) {
$loanId = $request->getAttribute('loan_id'); // here it works
$data = $model->getLoan($loanId);
$newResponse = $response->withJson($data, 201);
return $newResponse;
})->add($mw);
我有两种可能的方式需要它。我做错了什么?
在中间件中验证它并向控制器发送一些数组/ json响应,我将按照我的理解使用$data = $request->getParsedBody();
在中间件中验证它,但最终检查将在控制器中如下:
$app->get('/loan/{loan_id}', function (Request $request, Response $response) use ($app, $model) {
if($validator->isValid()){
//
}
$loanId = $request->getAttribute('loan_id'); // here it works
$data = $model->getLoan($loanId);
$newResponse = $response->withJson($data, 201);
return $newResponse;
})->add($mw);
对我来说,最好的选择是here 但我不明白我应该在容器中返回什么,以及如何将get / post输入传递给容器
答案 0 :(得分:0)
您在第一点的代码似乎没问题,您只能尝试从中间件访问路由参数。此时路由尚未解析,因此不会从URL解析参数。
这是一个已知的用例,在Slim's documentation中有描述。将以下设置添加到您的应用配置中以使代码正常工作:
$app = new App([
'settings' => [
// Only set this if you need access to route within middleware
'determineRouteBeforeAppMiddleware' => true
]
]);
为了理解中间件如何工作以及如何操作响应对象,我建议你阅读User Guide - 它不是那么久并且解释得非常好。