Symfony2 |隐藏/删除标题从响应/转发

时间:2013-04-24 10:04:45

标签: symfony header hide response forward

我正在尝试将2个控制器结果放在一个控制器中,所以我使用'$response = $this->forward('Bundle:Controller:functionXXX');'转发第一个控制器。

在控制器'functionXXXAction'中,我使用renderView返回响应。

问题是转发功能会在页面顶部返回此标题

"HTTP/1.0 200 OK Cache-Control: no-cache Date: Wed, 24 Apr 2013 09:56:50 GMT"

任何将其隐藏在页面中的解决方案?!

1 个答案:

答案 0 :(得分:2)

这个问题有点旧,但也许有人会在将来寻找答案。要删除标题,您只需要调用: $ response = $ this-> forward(' Bundle:Controller:functionXXX'); 的 $响应 - >的getContent();