如何将树枝渲染模板作为JSON响应的一部分返回?

时间:2012-11-06 18:33:37

标签: php json symfony twig

我想返回一个HTML片段以及json字符串中的其他值,这是我的内容:

$html = $this->render('sometemplate.html.twig', array( 'somevar' => $somevar ) );
$response = new Response(json_encode( array("html" => $html, "name" => "Joe Bloggs") ));
$response->headers->set('Content-Type', 'application/json');
return $response;

但我得到的只是{"html":{"headers":{}}}。有没有办法只抓取渲染的HTML?

1 个答案:

答案 0 :(得分:46)

请改用$this->renderView()

$this->render()返回Response个对象,而$this->renderView()返回渲染模板后产生的字符串。