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 を取得する方法はありますか?