在Symfony2 / 3中使用StreamedResponse时,我看不到Web调试工具栏。
Another answer表示&#34;只需要有<body>
&#34;的有效HTML,但即使使用此代码
public function indexAction()
{
$sr = new StreamedResponse();
$sr->setCallback(function() {
echo "<!DOCTYPE html><html><head><title>Where is the bar?</title></head><body><p>Hi. Can I haz bar pleeze?</p></body></html>";
flush();
});
$sr->send();
return $sr;
//return $this->render('index.html.twig');
}
我无法显示栏。
这与StreamedResponse的性质有关吗? 或者有什么我需要调用响应让symfony知道应该将bar添加到此响应中吗?