我想返回一个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?
答案 0 :(得分:46)
请改用$this->renderView()
。
$this->render()
返回Response
个对象,而$this->renderView()
返回渲染模板后产生的字符串。