我正在根据文档在Silex上编写应用程序但有一些补充。我在路由中间件之后申报路由,并为app完成中间件。
$app->put('/request/', function (Request $request) use ($app) {
// ... some code here ...
return $app->json(['requestId' => $requestId], 201);
})->bind('create_request')
->after(function(Request $request, Response $response) {
$contentLength = mb_strlen($response->getContent(), 'utf-8');
$response->headers->set('Content-length', $contentLength, true);
$response->headers->set('Connection', 'close', true);
});
$app->finish(function (Request $request, Response $response, Application $app) {
flush();
// ... generate big pdf file, attach it to email and send via swiftmailer ...
});
上面的代码按我的需要工作:响应被发送,浏览器微调器被停止,繁重的操作在后台处理。但是有一个悬而未决的问题:是否有必要在中间件和完成中间件中的刷新缓冲区之后为响应添加标头?如果没有这些操作,只有在完成中间件处理程序完成后才会收到服务器响应。
答案 0 :(得分:1)
我认为这是必要的
->after(
是RESPONSE
事件,在准备响应时调用,但不发送。在您的情况下,添加浏览器收到响应时关闭连接所需的所有标题
->finish(
是在发送响应后调用的TERMINATE
事件。 flush()
- 我认为它用于将服务器缓冲区的响应刷新到浏览器。