6

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

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

问题是forward 函数在页面顶部返回此标题:

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

任何解决方案可以将其从页面中隐藏?!

4

1 回答 1

2

这个问题有点老了,但也许将来有人会寻找答案。要摆脱标题,您只需调用: $response = $this->forward('Bundle:Controller:functionXXX'); $response->getContent();

于 2015-11-05T22:56:38.323 回答