我想返回一个 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?